NP.Lti13Platform.NameRoleProvisioningServices
1.0.0-preview003
dotnet add package NP.Lti13Platform.NameRoleProvisioningServices --version 1.0.0-preview003
NuGet\Install-Package NP.Lti13Platform.NameRoleProvisioningServices -Version 1.0.0-preview003
<PackageReference Include="NP.Lti13Platform.NameRoleProvisioningServices" Version="1.0.0-preview003" />
paket add NP.Lti13Platform.NameRoleProvisioningServices --version 1.0.0-preview003
#r "nuget: NP.Lti13Platform.NameRoleProvisioningServices, 1.0.0-preview003"
// Install NP.Lti13Platform.NameRoleProvisioningServices as a Cake Addin #addin nuget:?package=NP.Lti13Platform.NameRoleProvisioningServices&version=1.0.0-preview003&prerelease // Install NP.Lti13Platform.NameRoleProvisioningServices as a Cake Tool #tool nuget:?package=NP.Lti13Platform.NameRoleProvisioningServices&version=1.0.0-preview003&prerelease
NP.Lti13Platform.NameRoleProvisioningServices
The IMS Name and Role Provisioning Services spec defines a way that tools can request the names and roles of members of a context. This project provides an implementation of the spec.
Features
- Returns the members of a context
Getting Started
Add the nuget package to your project:
Add an implementation of the
ILti13NameRoleProvisioningDataService
interface:
public class DataService: ILti13NameRoleProvisioningDataService
{
...
}
- Add the required services.
builder.Services
.AddLti13PlatformCore()
.AddLti13PlatformNameRoleProvisioningServices()
.WithLti13NameRoleProvisioningDataService<DataService>();
- Setup the routing for the LTI 1.3 platform endpoints:
app.UseLti13PlatformNameRoleProvisioningServices();
ILti13NameRoleProvisioningDataService
There is no default ILti13NameRoleProvisioningDataService
implementation to allow each project to store the data how they see fit.
The ILti13NameRoleProvisioningDataService
interface is used to get the persisted members of a context filtered by multiple parameters.
All of the internal services are transient and therefore the data service may be added at any scope (Transient, Scoped, Singleton).
Defaults
Routing
Default routes are provided for all endpoints. Routes can be configured when calling UseLti13PlatformNameRoleProvisioningServices()
.
app.UseLti13PlatformNameRoleProvisioningServices(config => {
config.NamesAndRoleProvisioningServicesUrl = "/lti13/{deploymentId}/{contextId}/memberships"; // {deploymentId} and {contextId} are required
return config;
});
ILti13NameRoleProvisioningConfigService
The ILti13NameRoleProvisioningService
interface is used to get the config for the name and role provisioning service. The config is used to tell the tools how to request the members of a context.
There is a default implementation of the ILti13NameRoleProvisioningConfigService
interface that uses a configuration set up on app start.
It will be configured using the IOptions
pattern and configuration.
The configuration path for the service is Lti13Platform:NameRoleProvisioningServices
.
Examples:
{
"Lti13Platform": {
"NameRoleProvisioningServices": {
"ServiceAddress": "https://<mysite>"
}
}
}
builder.Services.Configure<ServicesConfig>(x => { });
The Default implementation can be overridden by adding a new implementation of the ILti13NameRoleProvisioningConfigService
interface.
This may be useful if the service URL is dynamic or needs to be determined at runtime.
builder.Services
.AddLti13PlatformCore()
.AddLti13PlatformNameRoleProvisioningServices()
.WithLti13NameRoleProvisioningConfigService<ConfigService>();
Configuration
ServiceAddress
The base url used to tell tools where the service is located.
Member Message
The IMS Name and Role Provisioning Services spec defines a way to give tools access to the parts of LTI messages that are specific to members. This project includes the specifics for the core message and known properties defined within the spec. Additional message can be added by calling ExtendNameRoleProvisioningMessage
on startup. This follows the same pattern as Populators from the core spec. These messages should only contain the user specific message properties of the given message. Multiple populators may be added for the same interface and multiple interfaces may be added for the same <message_type>.
builder.Services
.AddLti13PlatformCore()
.AddLti13PlatformNameRoleProvisioningServices()
.WithDefaultNameRoleProvisioningService()
.ExtendNameRoleProvisioningMessage<IMessage, MessagePopulator>("<message_type>");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- NP.Lti13Platform.Core (>= 1.0.0-preview003)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NP.Lti13Platform.NameRoleProvisioningServices:
Package | Downloads |
---|---|
NP.Lti13Platform
A platform implementation of the LTI 1.3 spec. Includes the Core, DeepLinking, Assignment and Grade Services, and Name and Role Provisioning Services specs. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0-preview003 | 40 | 11/2/2024 |
1.0.0-preview002 | 41 | 10/26/2024 |
1.0.0-preview001 | 37 | 10/26/2024 |
0.1.0-preview002 | 39 | 10/23/2024 |
0.1.0-beta | 34 | 10/23/2024 |