4 Commits

Author SHA1 Message Date
7fd110d56c 1.0.5 2020-03-26 21:45:03 +00:00
bb7e9e75ba fix(fix(AAgHandler): now has mandatory async start and async stop methods): update 2020-03-26 21:45:03 +00:00
0b576c3170 1.0.4 2020-03-25 20:15:47 +00:00
df96f08038 fix(core): update 2020-03-25 20:15:46 +00:00
7 changed files with 30 additions and 15 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/sdk",
"version": "1.0.3",
"version": "1.0.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@apiglobal/sdk",
"version": "1.0.3",
"version": "1.0.5",
"private": false,
"description": "an sdk package for api.global",
"main": "dist_ts/index.js",

View File

@ -3,9 +3,9 @@ import * as sdk from '../ts/index';
import { ISimpleRequest } from '@tsclass/tsclass/dist_ts/network';
tap.test('should create a valid Handler', async () => {
class MyHandler extends sdk.AAgHandler {
class MyHandler extends sdk.AAgHandler<any> {
slug: 'testapi';
public async handleRequest(request: ISimpleRequest) {
public async handleRequest(authInfo: sdk.AuthInfo<any>, request: ISimpleRequest) {
// this.authenticationHandler
let response: any;
return response;

View File

@ -1 +1,2 @@
export * from './sdk.classes.aghandler';
export * from './sdk.classes.authinfo';

View File

@ -1,16 +1,14 @@
import * as plugins from './sdk.plugins';
import { AuthInfo } from './sdk.classes.authinfo';
export abstract class AAgHandler {
public authenticationHandler: any;
export abstract class AAgHandler<TClaim> {
/**
* a slug that separates the handler from other handlers
*/
public abstract slug: string;
public abstract handleRequest (request: plugins.tsclass.network.ISimpleRequest): Promise<plugins.tsclass.network.ISimpleResponse>;
public abstract handleRequest (authInfoArg: AuthInfo<TClaim>, request: plugins.tsclass.network.ISimpleRequest): Promise<plugins.tsclass.network.ISimpleResponse>;
public setAuthenticationHandler(authHandler) {
this.authenticationHandler = authHandler;
}
public abstract start(): Promise<any>;
public abstract stop(): Promise<any>;
}

View File

@ -1,3 +0,0 @@
import * as plugins from './sdk.plugins';
export abstract class AAuthenticationHandler {}

View File

@ -0,0 +1,19 @@
import * as plugins from './sdk.plugins';
/**
* AuthInfo is created for every single incoming request
*/
export abstract class AuthInfo<TClaim> {
/**
* wether the request is generally authenticated
*/
public abstract authenticated: boolean;
/**
* A heuristic analysis result wether the request might be fishy.
* Note: DDOS attacks should never make it anywhere near your code and are filtered by api.global itself.
*/
public abstract potentiallyMalicious: boolean;
public abstract claim: TClaim;
}