nodejs 钩子机制开发教程,欢迎指点
发布于 3 年前 作者 einsqing 3367 次浏览 来自 分享

记koahubjs钩子开发过程

在使用koahubjs开发项目完成之后,总是需要另外增加一些插件功能,这种情况下改动项目代码,风险太大,所以钩子机制不可缺少。koahubjs将钩子加载到了内存中,原因是因为koahubjs框架并没有内置数据库,而且加载到内存中更加灵活。

钩子1

控制器钩子

执行某个http请求的时候,想要调用另外一个控制器的方法

钩子2

方法钩子

执行某个http请求的时候,想要调用某个公共的函数

直接上代码

//创建hook.class.js
// hooks 定义
// {
//     addOrder: [
//         '/admin/index/index'
//     ]
// }

export default class {
    constructor() {
        this.hooks = {};
    }

    get() {
        return this.hooks;
    }

    add(name, action) {
        let add = true;
        for (let key in this.hooks) {
            if (name == key) {
                this.hooks[key].push(action);
                add = false;
            }
        }
        if (add) {
            this.hooks[name] = [action];
        }

        return this.get();
    }

    run(name) {
        for (let key in this.hooks) {
            if (name == key) {
                for (let path of this.hooks[key]) {
                    if (/\w+\(.*\)$/.test(path)) {
                        this.runFunction(path);
                    } else {
                        this.runController(path);
                    }
                }
            }
        }
    }

    runController(path) {
        let action = path.slice(path.lastIndexOf('/'));
        path = path.slice(0, path.lastIndexOf('/'));

        let include = false;
        for (let _key in koahub.controllers) {
            if (_key == path) {
                include = true;
                break;
            }
        }

        if (include) {
            let ctrl = koahub.controllers[path];
            let pros = Object.getOwnPropertyNames(ctrl.prototype).filter(function(value) {
                if (value == 'constructor') {
                    return false;
                }
                return true;
            });

            let callFlag = true;
            for (let k in pros) {
                if ('/' + pros[k] == action) {
                    Object.getPrototypeOf(new ctrl())[pros[k]].call(this);
                    callFlag = false;
                }
            }

            if (callFlag) {
                console.error('Hook Not Found Method');
            }
        } else {
            console.error('Hook Not Found Controller');
        }
    }

    runFunction(value) {
        eval(`koahub.utils.${value}`);
    }
}

钩子需要提前挂载到相应的节点上

//开始挂载
//controller钩子
koahub.hook.add('hook1', '/admin/public/sendEmail');
//function钩子
koahub.hook.add('hook2', 'tools.add(1,2)');

//调用钩子
koahub.hook.run('hook1');
koahub.hook.run('hook2');

util方法

//util下的*.util.js会自动挂载到koahub.utils上
//util/tools.util.js
export function add(a, b) {
    console.log(a + b);
    return a + b;
}

export function dis(a, b) {
    console.log(a - b);
    return a - b;
}

KoaHub.js – 基于 Koa.js 平台的 Node.js web 快速开发框架

官网:http://js.koahub.com

7 回复

我一直觉得你这是mount,不是hook…

@i5ting 作用差不多,不喜欢那种前置内置的功能,不灵活。

@einsqing 会有人喷你的,还不如用ioc,哈哈

@i5ting 被喷习惯了,能解决实际问题就好。并不懂ioc是啥。。。Ioc—Inversion of Control,即“控制反转”,不是什么技术,而是一种设计思想。在Java开发中,Ioc意味着将你设计好的对象交给容器控制,而不是传统的在你的对象内部直接控制。

我还以为是探针类话题。。。

@luoyjx 什么是探针类话题?

From KoaHub.js

探针,做应用监控神马的

回到顶部