source: TFP-WebServer/WebServer/src/WebAPI/AbsWebAPI.cs@ 492

Last change on this file since 492 was 426, checked in by alloc, 19 months ago

*Updated web permissions system
*Fixed webpermissions command
*Moved API "webmods" to "mods", also lists non-webmod mods

File size: 964 bytes
Line 
1using Webserver.Permissions;
2
3namespace Webserver.WebAPI {
4 public abstract class AbsWebAPI {
5 public readonly string Name;
6 protected readonly Web ParentWeb;
7
8 protected readonly string CachedApiModuleName;
9
10 protected AbsWebAPI (string _name = null) : this(null, _name) {
11 }
12
13 protected AbsWebAPI (Web _parentWeb, string _name = null) {
14 Name = _name ?? GetType ().Name;
15 ParentWeb = _parentWeb;
16 CachedApiModuleName = $"webapi.{Name}";
17 RegisterPermissions ();
18 }
19
20 protected virtual void RegisterPermissions () {
21 AdminWebModules.Instance.AddKnownModule (new AdminWebModules.WebModule(CachedApiModuleName, DefaultPermissionLevel (), true));
22 }
23
24 public abstract void HandleRequest (RequestContext _context);
25
26 public virtual bool Authorized (RequestContext _context) {
27 return AdminWebModules.Instance.GetModule (CachedApiModuleName).LevelGlobal >= _context.PermissionLevel;
28 }
29
30 public virtual int DefaultPermissionLevel () => 0;
31 }
32}
Note: See TracBrowser for help on using the repository browser.