當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript validate.authorized方法代碼示例

本文整理匯總了TypeScript中nova-base.validate.authorized方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript validate.authorized方法的具體用法?TypeScript validate.authorized怎麽用?TypeScript validate.authorized使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在nova-base.validate的用法示例。


在下文中一共展示了validate.authorized方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: function

 authenticator.authenticate = function () {
     try {
         validate.authorized(false, 'Invalid token');
     } catch (e) {
         return Promise.reject(e);
     }
 };
開發者ID:herculesinc,項目名稱:nova-server,代碼行數:7,代碼來源:SocketListener.spec.ts

示例2: helloWorldAdapter

export async function helloWorldAdapter(this: ActionContext, inputs: any, token: Token): Promise<HelloWorldInputs> {
    validate.input(inputs.author, 'Author must be provided');
    const user = await (this.dao as any).fetchUserById(token.userId);
    validate.authorized(user, 'Authorization required');
    return { 
        user    : user, 
        author  : inputs.author
    };
}
開發者ID:herculesinc,項目名稱:nova-server,代碼行數:9,代碼來源:adapters.ts

示例3: parseAuthHeader

export function parseAuthHeader(header: string): AuthInputs {
    validate.authorized(header, 'Authorization header was not provided');
    const authParts = header.split(' ');
    validate.input(authParts.length === 2, 'Invalid authorization header');
    return {
        scheme      : authParts[0],
        credentials : authParts[1]
    };
}
開發者ID:herculesinc,項目名稱:nova-server,代碼行數:9,代碼來源:util.ts

示例4: decode

    [users[2].id]: users[2],
};

// INTERFACES
// =================================================================================================
export interface Token {
    userId  : string;
    password: string;
}

// AUTHENTICATOR
// =================================================================================================
export const authenticator: Authenticator<Token, Token> = {

    decode(inputs: AuthInputs): Token {
        validate.authorized(inputs.scheme === 'token', 'Authentication schema not supported');
        const parts = inputs.credentials.split('%');
        validate.authorized(parts.length === 2, 'Invalid token');
        return {
            userId  : parts[0],
            password: parts[1]
        }
    },

    authenticate(this: ActionContext, requestor: RequestorInfo, options: any): Promise<Token> {
        try {
            let token = requestor.auth as Token;
            validate.authorized(token, 'Token is undefined');
            const user = USER_MAP[token.userId];
            validate.authorized(user, 'Invalid user');
            validate.authorized(token.password === user.password, 'Invalid password');
開發者ID:herculesinc,項目名稱:nova-server,代碼行數:31,代碼來源:Authenticator.ts


注:本文中的nova-base.validate.authorized方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。