mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-08 05:58:36 +00:00
4.0 KiB
4.0 KiB
Site Provisioning Manager Web Part
Summary
This sample shows how you can manage site provisioning by calling Azure functions.
You can also find out how you can use React Hooks to manage the state of your application and share data across all components.
Used SharePoint Framework Version
Applies to
Solution
Solution | Author(s) |
---|---|
react-site-provisioning-manager | Ramin Ahmadi |
Version history
Version | Date | Comments |
---|---|---|
1.0 | August 14, 2019 | Initial release |
Features
This sample illustrates the following concepts on top of the SharePoint Framework:
- Using React Hooks.
- Using aadHttpClientFactory to call Azure functions.
- PnP/graph to call Microsoft Graph Api.
Configure Azure Function
Publishing the Azure function app
Follow below steps in order to publish the functions:
- Open Provisioning App solution with Visual Studio 2017/2019.
- In Solution Explorer, right-click the project and select Publish.
- In the Pick a publish target dialog, use the publish options as specified in the table below the image:
- Select Publish. If you haven't already signed-in to your Azure account from Visual Studio, select Sign-in.
- In the App Service: Create new dialog, enter the hosting settings.
- Select Create to create a function app and related resources in Azure with these settings and deploy your function project code.
Securing the Azure function app
- Open Azure Portal https://portal.azure.com.
- Click App Services and find the app you just created.
- Click "Platform features" tab.
- Under Networking, click "Authentication / Authorization".
- In the option “App Service Authentication”, select “ON”.
- For "Action to take when request is not authenticated" option, select “Log in with Azure Active Directory”.
- Under “Authentication Providers”, select “Azure Active Directory”.
- Select “Management mode” as Express.
- Create new AD App or select an existing one.
- Click OK and then Save.
Enable CORS on Azure Function
- Click Platform features.
- Under API, click CORS.
- Specify the Office 365 tenant domain url and SharePoint local workbench url.
- Click Save.
Setting up an Azure AD app for app-only access
Create a self signed certificate
- Run below command using Create-SelfSignedCertificate.ps1 in powershell-scripts folder.
.\Create-SelfSignedCertificate.ps1 -CommonName "NAME" -StartDate 2019-08-11 -EndDate 2025-08-11 -Password (ConvertTo-SecureString -String "PASSWORD" -AsPlainText -Force)
The dates are provided in US date format: YYYY-MM-dd Don't forget to update the PASSWORD and NAME.
- Open Azure Portal https://portal.azure.com.
- Select Azure Active Director, App Registration and then the App your created in previous steps.
- Click on "Certificates & secrets".
- Click on the "Upload certificate" button.
- Select the .CER file you generated earlier and click on "Add" to upload it.
API permissions
- Click on API Permissions.
- Click on the "Add a permission" button.
- Choose the following permissions:
Update App Settings
- Go the
App Settings
page of the Azure functions. - Create new key/value entries under ‘App settings’ as per the following table:
Key | Value | Note |
---|---|---|
CERTIFIATE | .pfx file name | you should copy .pfx file in Cert folder |
PASSWORD | Password you set for the certificate file | |
CLIENTID | Application Registration Client ID | you can find the client id from overview tab |
TENANT | e.x. contoso.onmicrosoft.com |