• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript nova-base.validate类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中nova-base.validate的典型用法代码示例。如果您正苦于以下问题:TypeScript validate类的具体用法?TypeScript validate怎么用?TypeScript validate使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了validate类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: 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


示例2: 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


示例3: function

 authenticator.authenticate = function () {
     try {
         validate.authorized(false, 'Invalid token');
     } catch (e) {
         return Promise.reject(e);
     }
 };
开发者ID:herculesinc,项目名称:nova-server,代码行数:7,代码来源:SocketListener.spec.ts


示例4: function

        handlers.push(async function(request: Request, response: Response, next: Function) {
            try {
                // remember current time
                const timestamp = Date.now();

                // build inputs object
                let inputs: any;
                if (config.body && config.body.type === 'files') {
                    inputs = Object.assign({}, config.defaults, request.query, request.params, request.body, { files: request.files });
                }
                else if (config.body && config.body.type === 'multipart') {
                    const filesField = (config.body as MultipartBodyOptions).mapFilesTo;
                    const files = filesField ? { [filesField]: request.files } : undefined;
                    inputs = Object.assign({}, config.defaults, request.query, request.params, request.body, files);
                }
                else {
                    const bodyField = config.body && (config.body as JsonBodyOptions).mapTo;
                    const body = bodyField ? { [bodyField]: request.body } : request.body;
                    inputs = Object.assign({}, config.defaults, request.query, request.params, body);
                }

                // get the executor
                const executor = executorMap.get(inputs[selector]);
                validate.input(!selector || executor, `No actions found for the specified ${selector}`);

                // check authorization header
                let requestor: RequestorInfo;
                const authHeader = request.headers['authorization'] || request.headers['Authorization'];
                if (authHeader) {
                    // if header is present, build and parse auth inputs
                    const authInputs = parseAuthHeader(authHeader);
                    validate(executor.authenticator, 'Cannot authenticate: authenticator is undefined');
                    requestor = {
                        ip  : request.ip,
                        auth: executor.authenticator.decode(authInputs)
                    };
                }
                else {
                    // otherwise, set requestor to the IP address of the request
                    requestor = { ip: request.ip };
                }

                // execute the action
                const result = await executor.execute(inputs, requestor, timestamp);

                // build response
                if (config.response) {
                    let view: any;
                    let viewer: string = requestor.auth
                        ? executor.authenticator.toOwner(requestor.auth)
                        : requestor.ip;

                    if (typeof config.response === 'function') {
                        view = config.response(result, undefined, viewer, timestamp);
                    }
                    else {
                        const viewBuilderOptions = (typeof config.response.options === 'function')
                            ? config.response.options(inputs, result, viewer, timestamp)
                            : config.response.options;
                        view = config.response.view(result, viewBuilderOptions, viewer, timestamp);
                    }

                    if (!view) throw new Exception('Resource not found', HttpStatusCode.NotFound);
                    if (typeof view !== 'object') throw new Exception(`View for ${request.method} ${request.path} returned invalid value`);

                    response.statusCode = HttpStatusCode.OK;
                    const body = JSON.stringify(view);
                    response.setHeader('Content-Type', 'application/json; charset=utf-8');
                    response.setHeader('Content-Length', Buffer.byteLength(body, 'utf8').toString(10));
                    response.end(body, 'utf8');
                }
                else {
                    response.statusCode = HttpStatusCode.NoContent;
                    response.end();
                }
            }
            catch (error) {
                next(error);
            }
        });
开发者ID:herculesinc,项目名称:nova-server,代码行数:80,代码来源:RouteController.ts


示例5: 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类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript novo-elements.FormUtils类代码示例发布时间:2022-05-25
下一篇:
TypeScript normalizr.Schema类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap