-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfig.cs
130 lines (117 loc) · 3.24 KB
/
Config.cs
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
using System;
using System.Collections.Generic;
using IdentityServer4.Models;
using STS.Models;
namespace STS
{
public static class Config
{
public static IEnumerable<ApiResource> GetApiResources()
{
return new List<ApiResource>
{
new ApiResource("sts_api", "STS Api")
};
}
public static IEnumerable<IdentityResource> GetIdentityResources()
{
return new List<IdentityResource>
{
new IdentityResources.OpenId(),
new IdentityResources.Profile(),
new IdentityResource
{
Name = "permissions",
DisplayName = "Client permissions",
Description = "Permissions",
UserClaims = new List<string>
{
"permissions"
}
}
};
}
public static IEnumerable<Client> GetClients()
{
return new List<Client>
{
new Client
{
ClientId = "sts",
ClientName = "STS",
AllowedGrantTypes = GrantTypes.ClientCredentials,
AllowedScopes =
{
"sts_api"
}
},
new Client
{
ClientId = "client-sts",
ClientName = "Client STS",
AllowedGrantTypes = GrantTypes.ResourceOwnerPassword,
AllowOfflineAccess = true,
AllowedScopes =
{
"sts_api"
}
}
};
}
public static IEnumerable<Permission> GetPermissions()
{
var resources = new List<string>
{
"client",
"permission",
"resource",
"role",
"user"
};
var types = new List<string>
{
"create",
"get",
"get-all",
"update",
"delete"
};
var permissions = new List<Permission>();
foreach (var resource in resources)
{
foreach (var type in types)
{
permissions.Add(new Permission
{
Name = $"sts:{type}:{resource}"
});
}
}
permissions.Add(new Permission
{
Name = "sts:update-admin:user"
});
return permissions;
}
public static IEnumerable<Role> GetRoles()
{
return new List<Role>
{
new Role
{
Name = "admin"
}
};
}
public static IEnumerable<User> GetUsers()
{
return new List<User>
{
new User
{
Username = "admin"
}
};
}
}
}