예제 #1
0
        private BaristaServiceApplication CreateServiceApplication(BaristaService service)
        {
            // create service app
            var serviceApp = BaristaServiceApplication.Create(
                ServiceAppName.Text,
                service,
                ApplicationPoolSelection.GetOrCreateApplicationPool());

            serviceApp.Update();

            // start it if it isn't already started
            // ReSharper disable once RedundantCheckBeforeAssignment
            if (serviceApp.Status != SPObjectStatus.Online)
            {
                serviceApp.Status = SPObjectStatus.Online;
            }

            // configure service app endpoint
            serviceApp.AddServiceEndpoint(string.Empty, SPIisWebServiceBindingType.Http);
            serviceApp.Update(true);

            // now provision the service app
            serviceApp.Provision();
            return(serviceApp);
        }
예제 #2
0
        private void CreateServiceApplicationProxy(BaristaServiceApplication serviceApp)
        {
            // get reference to the installed service proxy
            var serviceProxy = BaristaHelper.GetBaristaServiceProxy(SPFarm.Local);

            // create service app proxy
            var serviceAppProxy = new BaristaServiceApplicationProxy(
                ServiceAppName.Text + " Proxy",
                serviceProxy,
                serviceApp.Uri);

            serviceAppProxy.Update(true);

            // provision service app proxy
            serviceAppProxy.Provision();

            // start it if it isn't already started
            // ReSharper disable once RedundantCheckBeforeAssignment
            if (serviceAppProxy.Status != SPObjectStatus.Online)
            {
                serviceAppProxy.Status = SPObjectStatus.Online;
            }
            serviceAppProxy.Update(true);

            // add the proxy to the default group if selected
            if (!DefaultServiceApp.Checked)
            {
                return;
            }

            var defaultGroup = SPServiceApplicationProxyGroup.Default;

            defaultGroup.Add(serviceAppProxy);
            defaultGroup.Update(true);
        }
예제 #3
0
        protected override void InternalProcessRecord()
        {
            #region validation stuff
            // ensure can hit farm
            var farm = SPFarm.Local;
            if (farm == null)
            {
                ThrowTerminatingError(new InvalidOperationException("SharePoint farm not found."), ErrorCategory.ResourceUnavailable, this);
                SkipProcessCurrentRecord();
                return;
            }

            // ensure can hit local server
            var server = SPServer.Local;
            if (server == null)
            {
                ThrowTerminatingError(new InvalidOperationException("SharePoint local server not found."), ErrorCategory.ResourceUnavailable, this);
                SkipProcessCurrentRecord();
                return;
            }

            // ensure can hit service application
            var service = BaristaHelper.GetBaristaService(farm);
            if (service == null)
            {
                ThrowTerminatingError(new InvalidOperationException("Barista Service not found (likely not installed)."), ErrorCategory.ResourceUnavailable, this);
                SkipProcessCurrentRecord();
                return;
            }

            // ensure can hit app pool
            var appPool = ApplicationPool.Read();
            if (appPool == null)
            {
                ThrowTerminatingError(new InvalidOperationException("Application pool not found."), ErrorCategory.ResourceUnavailable, this);
                SkipProcessCurrentRecord();
            }
            #endregion

            // verify a service app doesn't already exist
            var existingServiceApp = service.Applications.GetValue <BaristaServiceApplication>();
            if (existingServiceApp != null)
            {
                WriteError(new InvalidOperationException("Barista Service Application already exists."),
                           ErrorCategory.ResourceExists,
                           existingServiceApp);
                SkipProcessCurrentRecord();
            }

            // create & provision the service app
            if (!ShouldProcess(Name))
            {
                return;
            }

            var serviceApp = BaristaServiceApplication.Create(
                Name,
                service,
                appPool);

            // provision the service app
            serviceApp.Provision();

            //Check for and copy farm default property bag settings to the service app.
            if (farm.Properties.ContainsKey(BaristaHelper.BaristaTrustedLocationsPropertyBagKey))
            {
                serviceApp.Properties.Add(BaristaHelper.BaristaTrustedLocationsPropertyBagKey, farm.Properties[BaristaHelper.BaristaTrustedLocationsPropertyBagKey]);
                serviceApp.Update();
            }

            if (farm.Properties.ContainsKey(BaristaHelper.BaristaSearchIndexDefinitionsPropertyBagKey))
            {
                serviceApp.Properties.Add(BaristaHelper.BaristaSearchIndexDefinitionsPropertyBagKey, farm.Properties[BaristaHelper.BaristaSearchIndexDefinitionsPropertyBagKey]);
                serviceApp.Update();
            }

            if (farm.Properties.ContainsKey(BaristaHelper.BaristaPackageApprovalsPropertyBagKey))
            {
                serviceApp.Properties.Add(BaristaHelper.BaristaPackageApprovalsPropertyBagKey, farm.Properties[BaristaHelper.BaristaPackageApprovalsPropertyBagKey]);
                serviceApp.Update();
            }

            // pass service app back to PowerShell
            WriteObject(serviceApp);
        }