This repository was archived by the owner on Mar 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathNewPHPSettingCmdlet.cs
More file actions
72 lines (65 loc) · 2.44 KB
/
NewPHPSettingCmdlet.cs
File metadata and controls
72 lines (65 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//-----------------------------------------------------------------------
// <copyright>
// Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
//
// This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
// See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.Management.Automation;
using Microsoft.Web.Administration;
using Web.Management.PHP.Config;
namespace Web.Management.PHP.Powershell
{
[Cmdlet(VerbsCommon.New, "PHPSetting",
SupportsShouldProcess = true,
ConfirmImpact = ConfirmImpact.Medium)]
public sealed class NewPHPSettingCmdlet : BaseCmdlet
{
private string _section = "PHP";
[Parameter(Mandatory = true,
Position = 0)]
public string Name { get; set; }
[Parameter(Mandatory = true, Position = 1)]
public string Value { get; set; }
[Parameter(Mandatory = false, Position = 2)]
public string Section
{
get
{
return _section;
}
set
{
_section = value;
}
}
protected override void DoProcessing()
{
using (var serverManager = new ServerManager())
{
var serverManagerWrapper = new ServerManagerWrapper(serverManager, SiteName, VirtualPath);
var configHelper = new PHPConfigHelper(serverManagerWrapper);
var phpIniFile = configHelper.GetPHPIniFile();
var setting = Helper.FindSetting(phpIniFile.Settings, Name);
if (setting == null)
{
if (ShouldProcess(Name))
{
var settings = new RemoteObjectCollection<PHPIniSetting>
{
new PHPIniSetting(Name, Value, Section)
};
configHelper.AddOrUpdatePHPIniSettings(settings);
}
}
else
{
var ex = new ArgumentException(String.Format(Resources.SettingAlreadyExistsError, Name));
ReportNonTerminatingError(ex, "InvalidArgument", ErrorCategory.InvalidArgument);
}
}
}
}
}