diff --git a/README.md b/README.md old mode 100755 new mode 100644 index a387dc7..b2b995d --- a/README.md +++ b/README.md @@ -52,6 +52,43 @@ yarn test └─controller ``` +### git提交规范规范 +``` +git commit 规范 +采用 Conventional Commits规范,请细看 Conventional Commits。 + +[optional scope]: +type 值如下: + feat:新功能(feature) + fix:修补 bug + docs:文档相关(documentation) + style: 格式(不影响代码运行的变动,空格,注释等) + refactor:重构(即不是新增功能,也不是修改 bug 的代码变动,代码优化) + perf: 提升产品用户体验的改动 + test:添加缺失测试、更正或者删除现有测试,test 相关代码改动都用这个 + chore:非 src 或者 test代码变动,如辅助工具、配置文件等变动。 + build:影响构建系统或外部依赖项的更改(示例范围:gulp,broccoli, npm) + ci:对 CI 配置文件和脚本的更改,一般我们都用不上,开源项目用得上(示例范围:Travis,Circle,BrowserStac k,SauceLabs) + revert:回滚提交的版本 +``` +详细文档查看:[git 仓库管理规范] [git-rules] + +### 开发基本规范 +- 能不用any,绝对不使用any + +- interface维护在interface目录下 + +- 代码注释 + - 每个方法,类必须有注释 + - 方法、类型注释必须描述清楚方法名称,参数,返回值等 + - 关键逻辑行,必须注释 + - 注释从读者的角度 + +- 命名 + - 文件名使用小驼峰, 如:baseService + - 类名使用大驼峰,如:BaseService + - 接口名使用大驼峰并以I开头,如:ILog + - 方法名字尽量以动词开头,如:getSomething,getUserInfo [midway]: https://midwayjs.org [git-rules]: https://confluence.sui.work/pages/viewpage.action?pageId=51120607 diff --git a/appveyor.yml b/appveyor.yml old mode 100755 new mode 100644 diff --git a/package.json b/package.json old mode 100755 new mode 100644 index 55884c8..06567f4 --- a/package.json +++ b/package.json @@ -4,10 +4,12 @@ "description": "node服务中心", "private": true, "dependencies": { + "@types/socket.io": "^2.1.4", "egg-cors": "^2.2.3", + "egg-jwt": "^3.1.7", "egg-redis": "^2.4.0", "egg-scripts": "^2.10.0", - "jsonwebtoken": "^8.5.1", + "egg-socket.io": "^4.1.6", "midway": "^1.0.0" }, "devDependencies": { diff --git a/run/agent_config.json b/run/agent_config.json new file mode 100644 index 0000000..b1773c7 --- /dev/null +++ b/run/agent_config.json @@ -0,0 +1,613 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": false, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "refererWhiteList": [] + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true + }, + "methodnoallow": { + "enable": false + }, + "noopen": { + "enable": true + }, + "nosniff": { + "enable": true + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y" + }, + "watcher": { + "type": "development", + "eventSources": { + "default": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": "100kb", + "fields": 10, + "fileSize": "10mb", + "files": 10, + "fileExtensions": [], + "whitelist": null, + "tmpdir": "C:\\Users\\ADMINI\\x7e1\\AppData\\Local\\Temp\\egg-multipart-tmp\\game-node-center", + "cleanSchedule": { + "cron": "0 30 4 * * *" + } + }, + "development": { + "watchDirs": [ + "app", + "lib", + "service", + "config", + "app.ts", + "agent.ts", + "interface.ts" + ], + "ignoreDirs": [], + "fastReady": false, + "reloadOnDebug": true, + "overrideDefault": true + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "E:\\self\\2020\\project\\game-node-center\\src\\app\\public", + "dynamic": true, + "preload": false, + "buffer": false, + "maxFiles": 1000 + }, + "view": { + "root": "E:\\self\\2020\\project\\game-node-center\\src\\app\\view", + "cache": false, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "cors": { + "allowMethods": "GET,HEAD,PUT,POST,DELETE,PATCH,OPTIONS", + "credentials": true, + "origin": "" + }, + "redis": { + "default": {}, + "app": true, + "agent": false, + "supportTimeCommand": true, + "client": { + "port": 6379, + "host": "127.0.0.1", + "password": "", + "db": 0 + } + }, + "io": { + "init": {}, + "namespace": { + "/": { + "connectionMiddleware": [], + "packetMiddleware": [] + }, + "/socket": { + "connectionMiddleware": [ + "auth" + ], + "packetMiddleware": [] + } + }, + "redis": { + "host": "127.0.0.1", + "port": 6379 + } + }, + "jwt": { + "secret": "", + "enable": true, + "match": "" + }, + "env": "local", + "name": "game-node-center", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "game-node-center", + "version": "1.0.0", + "description": "node服务中心", + "private": true, + "dependencies": { + "@types/socket.io": "^2.1.4", + "egg-cors": "^2.2.3", + "egg-jwt": "^3.1.7", + "egg-redis": "^2.4.0", + "egg-scripts": "^2.10.0", + "egg-socket.io": "^4.1.6", + "midway": "^1.0.0" + }, + "devDependencies": { + "@types/mocha": "^5.2.7", + "@types/node": "^10.5.5", + "cross-env": "^6.0.0", + "egg-ci": "^1.8.0", + "midway-bin": "1", + "midway-mock": "1", + "ts-node": "^8.3.0", + "tslib": "^1.8.1", + "tslint": "^5.11.0", + "tslint-config-egg": "^1.0.0", + "typescript": "^3.5.0" + }, + "engines": { + "node": ">=10.16.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=midway-server-node-loan-center --framework=midway --ts", + "stop": "egg-scripts stop --title=midway-server-node-loan-center", + "start_build": "npm run build && cross-env NODE_ENV=development midway-bin dev", + "clean": "midway-bin clean", + "dev": "cross-env NODE_ENV=local midway-bin dev --ts", + "debug": "cross-env NODE_ENV=local midway-bin debug --ts", + "test": "npm run lint && midway-bin test --ts", + "cov": "midway-bin cov --ts", + "lint": "tslint --fix -p tsconfig.json -t stylish", + "ci": "npm run cov", + "build": "midway-bin build -c" + }, + "ci": { + "version": "10" + }, + "midway-bin-clean": [ + ".vscode/.tsbuildinfo", + "dist" + ], + "repository": { + "type": "git", + "url": "" + }, + "author": "Cai", + "license": "MIT" + }, + "baseDir": "E:\\self\\2020\\project\\game-node-center\\src", + "HOME": "C:\\Users\\Administrator", + "rundir": "E:\\self\\2020\\project\\game-node-center\\run", + "dump": { + "ignore": "" + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "onerror": "" + }, + "logger": { + "dir": "E:\\self\\2020\\project\\game-node-center\\logs\\game-node-center", + "encoding": "utf8", + "env": "local", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": false, + "outputJSON": false, + "buffer": true, + "appLogName": "app.log", + "coreLogName": "core.log", + "agentLogName": "agent.log", + "errorLogName": "error.log", + "coreLogger": { + "consoleLevel": "WARN" + }, + "allowDebugAtProd": false, + "type": "agent" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + } + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "meta", + "siteFile", + "notfound", + "bodyParser", + "overrideMethod" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 7001, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "pluginOverwrite": false, + "container": { + "ignore": [ + "**/node_modules/**", + "**/logs/**", + "**/run/**", + "**/public/**", + "**/view/**", + "**/views/**", + "**/config/**", + "**/app/extend/**" + ], + "baseDir": "E:\\self\\2020\\project\\game-node-center\\src" + }, + "alinode": { + "logdir": "C:\\Users\\ADMINI\\x7e1\\AppData\\Local\\Temp", + "error_log": [ + "E:\\self\\2020\\project\\game-node-center\\logs\\game-node-center\\common-error.log", + "E:\\self\\2020\\project\\game-node-center\\logs\\stderr.log" + ], + "packages": [ + "E:\\self\\2020\\project\\game-node-center\\package.json" + ] + }, + "sourceUrl": "", + "elkLogger": { + "match": "", + "enable": true + }, + "middleware": [ + "elkLogger", + "notFound" + ], + "apiDomain": { + "loanDomain": "*" + }, + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware" + }, + "plugins": { + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session", + "version": "3.1.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security", + "version": "2.7.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror", + "version": "2.1.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule", + "version": "3.6.4" + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart", + "version": "2.10.1" + }, + "development": { + "enable": true, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development", + "version": "2.4.3" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static", + "version": "2.2.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view", + "version": "2.1.2" + }, + "schedulePlus": { + "enable": true, + "package": "midway-schedule", + "name": "schedulePlus", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-schedule", + "version": "1.15.1" + }, + "cors": { + "enable": true, + "package": "egg-cors", + "name": "cors", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-cors", + "version": "2.2.3" + }, + "redis": { + "enable": true, + "package": "egg-redis", + "name": "redis", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis", + "version": "2.4.0" + }, + "io": { + "enable": true, + "package": "egg-socket.io", + "name": "io", + "dependencies": [ + "session" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io", + "version": "4.1.6" + }, + "jwt": { + "enable": true, + "package": "egg-jwt", + "name": "jwt", + "dependencies": [], + "optionalDependencies": [ + "onerror" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jwt", + "version": "3.1.7" + } + } +} \ No newline at end of file diff --git a/run/agent_config_meta.json b/run/agent_config_meta.json new file mode 100644 index 0000000..d4b1e04 --- /dev/null +++ b/run/agent_config_meta.json @@ -0,0 +1,357 @@ +{ + "sourceUrl": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "elkLogger": { + "match": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "keys": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "middleware": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "security": { + "csrf": { + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "type": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.local.js", + "useSession": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "domainWhiteList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "xframe": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.local.js", + "maxAge": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "policy": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "cors": { + "allowMethods": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "credentials": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "origin": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "logger": { + "outputJSON": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "appLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "coreLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "agentLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "errorLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "dir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "env": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "level": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "buffer": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "coreLogger": { + "consoleLevel": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.local.js" + }, + "allowDebugAtProd": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "apiDomain": { + "loanDomain": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "jwt": { + "secret": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "match": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "io": { + "namespace": { + "/socket": { + "connectionMiddleware": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "packetMiddleware": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "/": { + "connectionMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io\\config\\config.default.js", + "packetMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io\\config\\config.default.js" + } + }, + "redis": { + "host": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "port": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "init": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io\\config\\config.default.js" + }, + "redis": { + "client": { + "port": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "host": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "password": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "db": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "default": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js", + "app": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js", + "agent": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js", + "supportTimeCommand": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js" + }, + "development": { + "watchDirs": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.local.ts", + "overrideDefault": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.local.ts", + "ignoreDirs": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development\\config\\config.default.js", + "fastReady": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development\\config\\config.default.js", + "reloadOnDebug": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development\\config\\config.default.js" + }, + "session": { + "maxAge": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js", + "key": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js" + }, + "helper": { + "shtml": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\config\\config.local.js", + "eventSources": { + "default": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "logrotator": { + "filesRotateByHour": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "dir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "preload": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "maxFiles": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js" + }, + "view": { + "root": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js", + "cache": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.local.js", + "defaultExtension": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js" + }, + "env": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "name": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cookies": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "proxy": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "version": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "description": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "private": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dependencies": { + "@types/socket.io": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-cors": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-jwt": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-redis": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-socket.io": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "midway": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "@types/mocha": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "@types/node": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cross-env": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "midway-bin": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "midway-mock": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "ts-node": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "tslib": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "tslint": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "tslint-config-egg": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "typescript": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "stop": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "start_build": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "clean": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dev": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "debug": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "test": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cov": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "lint": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "ci": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "build": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "midway-bin-clean": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "repository": { + "type": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "url": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "author": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "license": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "HOME": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "rundir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "dump": { + "ignore": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "confusedConfigurations": { + "bodyparser": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "notFound": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "sitefile": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "middlewares": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "httpClient": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "formLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "textLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "strict": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "depth": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + } + }, + "meta": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "logging": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cluster": { + "listen": { + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "port": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "hostname": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + } + }, + "clusterClient": { + "maxWaitTime": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "pluginOverwrite": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "container": { + "ignore": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js" + }, + "alinode": { + "logdir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "error_log": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "packages": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js" + } +} \ No newline at end of file diff --git a/run/agent_dependency_10340 b/run/agent_dependency_10340 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_10340 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_10508 b/run/agent_dependency_10508 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_10508 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_10804 b/run/agent_dependency_10804 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_10804 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_1108 b/run/agent_dependency_1108 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_1108 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_11108 b/run/agent_dependency_11108 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/agent_dependency_11108 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_1212 b/run/agent_dependency_1212 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_1212 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_12388 b/run/agent_dependency_12388 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/agent_dependency_12388 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_1348 b/run/agent_dependency_1348 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_1348 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_13588 b/run/agent_dependency_13588 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_13588 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_13752 b/run/agent_dependency_13752 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_13752 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_14064 b/run/agent_dependency_14064 new file mode 100644 index 0000000..2f3e9ec --- /dev/null +++ b/run/agent_dependency_14064 @@ -0,0 +1,2 @@ +digraph G { +} diff --git a/run/agent_dependency_14436 b/run/agent_dependency_14436 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/agent_dependency_14436 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_14520 b/run/agent_dependency_14520 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/agent_dependency_14520 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_15192 b/run/agent_dependency_15192 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_15192 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_15444 b/run/agent_dependency_15444 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_15444 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_15472 b/run/agent_dependency_15472 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_15472 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_15676 b/run/agent_dependency_15676 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_15676 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_15860 b/run/agent_dependency_15860 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_15860 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_17128 b/run/agent_dependency_17128 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_17128 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_17708 b/run/agent_dependency_17708 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/agent_dependency_17708 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18064 b/run/agent_dependency_18064 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_18064 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18112 b/run/agent_dependency_18112 new file mode 100644 index 0000000..2f3957f --- /dev/null +++ b/run/agent_dependency_18112 @@ -0,0 +1,14 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "app"; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "app" [ label = "properties", fontsize = 8 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18328 b/run/agent_dependency_18328 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_18328 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18508 b/run/agent_dependency_18508 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_18508 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18564 b/run/agent_dependency_18564 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/agent_dependency_18564 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18656 b/run/agent_dependency_18656 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_18656 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18776 b/run/agent_dependency_18776 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_18776 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_18956 b/run/agent_dependency_18956 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/agent_dependency_18956 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_19104 b/run/agent_dependency_19104 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_19104 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_19288 b/run/agent_dependency_19288 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_19288 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_19364 b/run/agent_dependency_19364 new file mode 100644 index 0000000..9c4cbc2 --- /dev/null +++ b/run/agent_dependency_19364 @@ -0,0 +1,18 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "nspController" [ label = "nspController(NspController) +scope:Request", fontsize = 10 ]; + "app"; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "app" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_19408 b/run/agent_dependency_19408 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_19408 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_19660 b/run/agent_dependency_19660 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_19660 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_20184 b/run/agent_dependency_20184 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_20184 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_20436 b/run/agent_dependency_20436 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_20436 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_21576 b/run/agent_dependency_21576 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_21576 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_21600 b/run/agent_dependency_21600 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_21600 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_21752 b/run/agent_dependency_21752 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/agent_dependency_21752 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_21996 b/run/agent_dependency_21996 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_21996 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_22020 b/run/agent_dependency_22020 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_22020 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_22060 b/run/agent_dependency_22060 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/agent_dependency_22060 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_22276 b/run/agent_dependency_22276 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_22276 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_22888 b/run/agent_dependency_22888 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_22888 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_23464 b/run/agent_dependency_23464 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_23464 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_24000 b/run/agent_dependency_24000 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_24000 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_24096 b/run/agent_dependency_24096 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/agent_dependency_24096 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_24712 b/run/agent_dependency_24712 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_24712 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_25460 b/run/agent_dependency_25460 new file mode 100644 index 0000000..2f3957f --- /dev/null +++ b/run/agent_dependency_25460 @@ -0,0 +1,14 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "app"; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "app" [ label = "properties", fontsize = 8 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_25688 b/run/agent_dependency_25688 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/agent_dependency_25688 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_26144 b/run/agent_dependency_26144 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/agent_dependency_26144 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_26532 b/run/agent_dependency_26532 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_26532 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_26984 b/run/agent_dependency_26984 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_26984 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_27196 b/run/agent_dependency_27196 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_27196 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_27844 b/run/agent_dependency_27844 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_27844 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_28540 b/run/agent_dependency_28540 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_28540 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_28680 b/run/agent_dependency_28680 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/agent_dependency_28680 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_28828 b/run/agent_dependency_28828 new file mode 100644 index 0000000..4517198 --- /dev/null +++ b/run/agent_dependency_28828 @@ -0,0 +1,9 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_29376 b/run/agent_dependency_29376 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/agent_dependency_29376 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_29432 b/run/agent_dependency_29432 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_29432 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_29500 b/run/agent_dependency_29500 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/agent_dependency_29500 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_3164 b/run/agent_dependency_3164 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_3164 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_3704 b/run/agent_dependency_3704 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_3704 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_4000 b/run/agent_dependency_4000 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/agent_dependency_4000 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_4176 b/run/agent_dependency_4176 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/agent_dependency_4176 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_5372 b/run/agent_dependency_5372 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_5372 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_6404 b/run/agent_dependency_6404 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_6404 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_7352 b/run/agent_dependency_7352 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_7352 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_7692 b/run/agent_dependency_7692 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_7692 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_7952 b/run/agent_dependency_7952 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/agent_dependency_7952 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_dependency_8988 b/run/agent_dependency_8988 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/agent_dependency_8988 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/agent_timing_29500.json b/run/agent_timing_29500.json new file mode 100644 index 0000000..bfd8f2b --- /dev/null +++ b/run/agent_timing_29500.json @@ -0,0 +1,458 @@ +[ + { + "name": "Application Start", + "start": 1585289108460, + "end": 1585289111451, + "duration": 2991, + "pid": 29500, + "index": 0 + }, + { + "name": "Load Plugin", + "start": 1585289108466, + "end": 1585289108516, + "duration": 50, + "pid": 29500, + "index": 1 + }, + { + "name": "Load Config", + "start": 1585289108516, + "end": 1585289108572, + "duration": 56, + "pid": 29500, + "index": 2 + }, + { + "name": "Require(0) config/config.default.ts", + "start": 1585289108517, + "end": 1585289108519, + "duration": 2, + "pid": 29500, + "index": 3 + }, + { + "name": "Require(1) config/config.local.ts", + "start": 1585289108520, + "end": 1585289108521, + "duration": 1, + "pid": 29500, + "index": 4 + }, + { + "name": "Require(2) E:/self/2020/project/game-node-center/node_modules/egg-session/config/config.default.js", + "start": 1585289108522, + "end": 1585289108523, + "duration": 1, + "pid": 29500, + "index": 5 + }, + { + "name": "Require(3) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.default.js", + "start": 1585289108524, + "end": 1585289108525, + "duration": 1, + "pid": 29500, + "index": 6 + }, + { + "name": "Require(4) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/config/config.default.js", + "start": 1585289108526, + "end": 1585289108527, + "duration": 1, + "pid": 29500, + "index": 7 + }, + { + "name": "Require(5) E:/self/2020/project/game-node-center/node_modules/egg-onerror/config/config.default.js", + "start": 1585289108527, + "end": 1585289108528, + "duration": 1, + "pid": 29500, + "index": 8 + }, + { + "name": "Require(6) E:/self/2020/project/game-node-center/node_modules/egg-i18n/config/config.default.js", + "start": 1585289108529, + "end": 1585289108530, + "duration": 1, + "pid": 29500, + "index": 9 + }, + { + "name": "Require(7) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.default.js", + "start": 1585289108531, + "end": 1585289108532, + "duration": 1, + "pid": 29500, + "index": 10 + }, + { + "name": "Require(8) E:/self/2020/project/game-node-center/node_modules/egg-schedule/config/config.default.js", + "start": 1585289108533, + "end": 1585289108533, + "duration": 0, + "pid": 29500, + "index": 11 + }, + { + "name": "Require(9) E:/self/2020/project/game-node-center/node_modules/egg-multipart/config/config.default.js", + "start": 1585289108534, + "end": 1585289108535, + "duration": 1, + "pid": 29500, + "index": 12 + }, + { + "name": "Require(10) E:/self/2020/project/game-node-center/node_modules/egg-development/config/config.default.js", + "start": 1585289108536, + "end": 1585289108537, + "duration": 1, + "pid": 29500, + "index": 13 + }, + { + "name": "Require(11) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/config/config.default.js", + "start": 1585289108537, + "end": 1585289108538, + "duration": 1, + "pid": 29500, + "index": 14 + }, + { + "name": "Require(12) E:/self/2020/project/game-node-center/node_modules/egg-static/config/config.default.js", + "start": 1585289108539, + "end": 1585289108540, + "duration": 1, + "pid": 29500, + "index": 15 + }, + { + "name": "Require(13) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.default.js", + "start": 1585289108541, + "end": 1585289108542, + "duration": 1, + "pid": 29500, + "index": 16 + }, + { + "name": "Require(14) E:/self/2020/project/game-node-center/node_modules/egg-cors/config/config.default.js", + "start": 1585289108545, + "end": 1585289108546, + "duration": 1, + "pid": 29500, + "index": 17 + }, + { + "name": "Require(15) E:/self/2020/project/game-node-center/node_modules/egg-redis/config/config.default.js", + "start": 1585289108547, + "end": 1585289108547, + "duration": 0, + "pid": 29500, + "index": 18 + }, + { + "name": "Require(16) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/config/config.default.js", + "start": 1585289108548, + "end": 1585289108549, + "duration": 1, + "pid": 29500, + "index": 19 + }, + { + "name": "Require(17) E:/self/2020/project/game-node-center/node_modules/egg-jwt/config/config.default.js", + "start": 1585289108550, + "end": 1585289108551, + "duration": 1, + "pid": 29500, + "index": 20 + }, + { + "name": "Require(18) E:/self/2020/project/game-node-center/node_modules/egg/config/config.default.js", + "start": 1585289108552, + "end": 1585289108552, + "duration": 0, + "pid": 29500, + "index": 21 + }, + { + "name": "Require(19) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.default.js", + "start": 1585289108554, + "end": 1585289108555, + "duration": 1, + "pid": 29500, + "index": 22 + }, + { + "name": "Require(20) config/config.default.ts", + "start": 1585289108556, + "end": 1585289108556, + "duration": 0, + "pid": 29500, + "index": 23 + }, + { + "name": "Require(21) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.local.js", + "start": 1585289108558, + "end": 1585289108558, + "duration": 0, + "pid": 29500, + "index": 24 + }, + { + "name": "Require(22) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.local.js", + "start": 1585289108562, + "end": 1585289108562, + "duration": 0, + "pid": 29500, + "index": 25 + }, + { + "name": "Require(23) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.local.js", + "start": 1585289108566, + "end": 1585289108567, + "duration": 1, + "pid": 29500, + "index": 26 + }, + { + "name": "Require(24) E:/self/2020/project/game-node-center/node_modules/egg/config/config.local.js", + "start": 1585289108570, + "end": 1585289108571, + "duration": 1, + "pid": 29500, + "index": 27 + }, + { + "name": "Require(25) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.local.js", + "start": 1585289108571, + "end": 1585289108572, + "duration": 1, + "pid": 29500, + "index": 28 + }, + { + "name": "Require(26) config/config.local.ts", + "start": 1585289108572, + "end": 1585289108572, + "duration": 0, + "pid": 29500, + "index": 29 + }, + { + "name": "Load extend/agent.js", + "start": 1585289108573, + "end": 1585289108654, + "duration": 81, + "pid": 29500, + "index": 30 + }, + { + "name": "Require(27) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/agent.js", + "start": 1585289108575, + "end": 1585289108578, + "duration": 3, + "pid": 29500, + "index": 31 + }, + { + "name": "Require(28) E:/self/2020/project/game-node-center/node_modules/egg-schedule/app/extend/agent.js", + "start": 1585289108582, + "end": 1585289108626, + "duration": 44, + "pid": 29500, + "index": 32 + }, + { + "name": "Require(29) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app/extend/agent.js", + "start": 1585289108628, + "end": 1585289108631, + "duration": 3, + "pid": 29500, + "index": 33 + }, + { + "name": "Load extend/context.js", + "start": 1585289111150, + "end": 1585289111261, + "duration": 111, + "pid": 29500, + "index": 34 + }, + { + "name": "Require(30) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/context.js", + "start": 1585289111151, + "end": 1585289111171, + "duration": 20, + "pid": 29500, + "index": 35 + }, + { + "name": "Require(31) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/context.js", + "start": 1585289111172, + "end": 1585289111176, + "duration": 4, + "pid": 29500, + "index": 36 + }, + { + "name": "Require(32) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app/extend/context.js", + "start": 1585289111177, + "end": 1585289111178, + "duration": 1, + "pid": 29500, + "index": 37 + }, + { + "name": "Require(33) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app/extend/context.js", + "start": 1585289111180, + "end": 1585289111233, + "duration": 53, + "pid": 29500, + "index": 38 + }, + { + "name": "Require(34) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/context.js", + "start": 1585289111236, + "end": 1585289111238, + "duration": 2, + "pid": 29500, + "index": 39 + }, + { + "name": "Require(35) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/context.js", + "start": 1585289111242, + "end": 1585289111243, + "duration": 1, + "pid": 29500, + "index": 40 + }, + { + "name": "Require(36) E:/self/2020/project/game-node-center/node_modules/midway-web/app/extend/context.js", + "start": 1585289111244, + "end": 1585289111245, + "duration": 1, + "pid": 29500, + "index": 41 + }, + { + "name": "Require(37) app/extend/context.ts", + "start": 1585289111247, + "end": 1585289111248, + "duration": 1, + "pid": 29500, + "index": 42 + }, + { + "name": "Load agent.js", + "start": 1585289111261, + "end": 1585289111294, + "duration": 33, + "pid": 29500, + "index": 43 + }, + { + "name": "Require(38) E:/self/2020/project/game-node-center/node_modules/egg-security/agent.js", + "start": 1585289111262, + "end": 1585289111264, + "duration": 2, + "pid": 29500, + "index": 44 + }, + { + "name": "Require(39) E:/self/2020/project/game-node-center/node_modules/egg-onerror/agent.js", + "start": 1585289111265, + "end": 1585289111265, + "duration": 0, + "pid": 29500, + "index": 45 + }, + { + "name": "Require(40) E:/self/2020/project/game-node-center/node_modules/egg-watcher/agent.js", + "start": 1585289111267, + "end": 1585289111270, + "duration": 3, + "pid": 29500, + "index": 46 + }, + { + "name": "Require(41) E:/self/2020/project/game-node-center/node_modules/egg-schedule/agent.js", + "start": 1585289111271, + "end": 1585289111273, + "duration": 2, + "pid": 29500, + "index": 47 + }, + { + "name": "Require(42) E:/self/2020/project/game-node-center/node_modules/egg-development/agent.js", + "start": 1585289111275, + "end": 1585289111283, + "duration": 8, + "pid": 29500, + "index": 48 + }, + { + "name": "Require(43) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/agent.js", + "start": 1585289111283, + "end": 1585289111284, + "duration": 1, + "pid": 29500, + "index": 49 + }, + { + "name": "Require(44) E:/self/2020/project/game-node-center/node_modules/midway-schedule/agent.js", + "start": 1585289111286, + "end": 1585289111287, + "duration": 1, + "pid": 29500, + "index": 50 + }, + { + "name": "Require(45) E:/self/2020/project/game-node-center/node_modules/egg-redis/agent.js", + "start": 1585289111288, + "end": 1585289111290, + "duration": 2, + "pid": 29500, + "index": 51 + }, + { + "name": "Require(46) E:/self/2020/project/game-node-center/node_modules/egg/agent.js", + "start": 1585289111292, + "end": 1585289111292, + "duration": 0, + "pid": 29500, + "index": 52 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-watcher/lib/init.js:15:14", + "start": 1585289111301, + "end": 1585289111395, + "duration": 94, + "pid": 29500, + "index": 53 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-schedule/agent.js:12:9", + "start": 1585289111302, + "end": 1585289111366, + "duration": 64, + "pid": 29500, + "index": 54 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-development/agent.js:12:9", + "start": 1585289111302, + "end": 1585289111451, + "duration": 149, + "pid": 29500, + "index": 55 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/midway-web/dist/loader/loader.js:41:18", + "start": 1585289111303, + "end": 1585289111392, + "duration": 89, + "pid": 29500, + "index": 56 + } +] \ No newline at end of file diff --git a/run/application_config.json b/run/application_config.json new file mode 100644 index 0000000..3e433b5 --- /dev/null +++ b/run/application_config.json @@ -0,0 +1,668 @@ +{ + "config": { + "session": { + "maxAge": 86400000, + "key": "EGG_SESS", + "httpOnly": true, + "encrypt": true, + "overwrite": true, + "signed": true, + "autoCommit": true, + "encode": "", + "decode": "", + "genid": "" + }, + "security": { + "domainWhiteList": [], + "protocolWhiteList": [], + "defaultMiddleware": "csrf,hsts,methodnoallow,noopen,nosniff,csp,xssProtection,xframe,dta", + "csrf": { + "enable": false, + "type": "ctoken", + "ignoreJSON": false, + "useSession": false, + "cookieName": "csrfToken", + "sessionName": "csrfToken", + "headerName": "x-csrf-token", + "bodyName": "_csrf", + "queryName": "_csrf", + "refererWhiteList": [] + }, + "xframe": { + "enable": true, + "value": "SAMEORIGIN", + "matching": "" + }, + "hsts": { + "enable": false, + "maxAge": 31536000, + "includeSubdomains": false + }, + "dta": { + "enable": true, + "matching": "" + }, + "methodnoallow": { + "enable": false + }, + "noopen": { + "enable": true, + "matching": "" + }, + "nosniff": { + "enable": true, + "matching": "" + }, + "referrerPolicy": { + "enable": false, + "value": "no-referrer-when-downgrade" + }, + "xssProtection": { + "enable": true, + "value": "1; mode=block", + "matching": "" + }, + "csp": { + "enable": false, + "policy": {} + }, + "ssrf": { + "ipBlackList": null, + "checkAddress": null + }, + "_protocolWhiteListSet": "" + }, + "helper": { + "shtml": {} + }, + "jsonp": { + "limit": 50, + "callback": [ + "_callback", + "callback" + ], + "csrf": false + }, + "onerror": { + "errorPageUrl": "", + "appErrorFilter": null, + "templatePath": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\lib\\onerror_page.mustache" + }, + "i18n": { + "defaultLocale": "en_US", + "dirs": [ + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-schedule\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-cors\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jwt\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\locales", + "E:\\self\\2020\\project\\game-node-center\\src\\config\\locales" + ], + "queryField": "locale", + "cookieField": "locale", + "cookieDomain": "", + "cookieMaxAge": "1y", + "functionName": "__" + }, + "watcher": { + "type": "development", + "eventSources": { + "default": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\lib\\event-sources\\default", + "development": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\lib\\event-sources\\development" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "NONE", + "file": "egg-schedule.log" + } + }, + "schedule": { + "directory": [] + }, + "multipart": { + "mode": "stream", + "autoFields": false, + "defaultCharset": "utf8", + "fieldNameSize": 100, + "fieldSize": 102400, + "fields": 10, + "fileSize": 10485760, + "files": 10, + "fileExtensions": [], + "whitelist": null, + "tmpdir": "C:\\Users\\ADMINI\\x7e1\\AppData\\Local\\Temp\\egg-multipart-tmp\\game-node-center", + "cleanSchedule": { + "cron": "0 30 4 * * *" + } + }, + "development": { + "watchDirs": [ + "app", + "lib", + "service", + "config", + "app.ts", + "agent.ts", + "interface.ts" + ], + "ignoreDirs": [], + "fastReady": false, + "reloadOnDebug": true, + "overrideDefault": true + }, + "logrotator": { + "filesRotateByHour": null, + "hourDelimiter": "-", + "filesRotateBySize": null, + "maxFileSize": 52428800, + "maxFiles": 10, + "rotateDuration": 60000, + "maxDays": 31 + }, + "static": { + "prefix": "/public/", + "dir": "E:\\self\\2020\\project\\game-node-center\\src\\app\\public", + "dynamic": true, + "preload": false, + "buffer": false, + "maxFiles": 1000 + }, + "view": { + "root": "E:\\self\\2020\\project\\game-node-center\\src\\app\\view", + "cache": false, + "defaultExtension": ".html", + "defaultViewEngine": "", + "mapping": {} + }, + "cors": { + "allowMethods": "GET,HEAD,PUT,POST,DELETE,PATCH,OPTIONS", + "credentials": true, + "origin": "" + }, + "redis": { + "default": {}, + "app": true, + "agent": false, + "supportTimeCommand": true, + "client": { + "port": 6379, + "host": "127.0.0.1", + "password": "", + "db": 0 + } + }, + "io": { + "init": { + "path": "/socket.io", + "allowRequest": "" + }, + "namespace": { + "/": { + "connectionMiddleware": [], + "packetMiddleware": [] + }, + "/socket": { + "connectionMiddleware": [ + "auth" + ], + "packetMiddleware": [] + } + }, + "redis": { + "host": "127.0.0.1", + "port": 6379 + } + }, + "jwt": { + "secret": "", + "enable": true, + "match": "" + }, + "env": "local", + "name": "game-node-center", + "keys": "", + "cookies": {}, + "proxy": false, + "maxIpsCount": 0, + "maxProxyCount": 0, + "protocolHeaders": "x-forwarded-proto", + "ipHeaders": "x-forwarded-for", + "hostHeaders": "", + "pkg": { + "name": "game-node-center", + "version": "1.0.0", + "description": "node服务中心", + "private": true, + "dependencies": { + "@types/socket.io": "^2.1.4", + "egg-cors": "^2.2.3", + "egg-jwt": "^3.1.7", + "egg-redis": "^2.4.0", + "egg-scripts": "^2.10.0", + "egg-socket.io": "^4.1.6", + "midway": "^1.0.0" + }, + "devDependencies": { + "@types/mocha": "^5.2.7", + "@types/node": "^10.5.5", + "cross-env": "^6.0.0", + "egg-ci": "^1.8.0", + "midway-bin": "1", + "midway-mock": "1", + "ts-node": "^8.3.0", + "tslib": "^1.8.1", + "tslint": "^5.11.0", + "tslint-config-egg": "^1.0.0", + "typescript": "^3.5.0" + }, + "engines": { + "node": ">=10.16.0" + }, + "scripts": { + "start": "egg-scripts start --daemon --title=midway-server-node-loan-center --framework=midway --ts", + "stop": "egg-scripts stop --title=midway-server-node-loan-center", + "start_build": "npm run build && cross-env NODE_ENV=development midway-bin dev", + "clean": "midway-bin clean", + "dev": "cross-env NODE_ENV=local midway-bin dev --ts", + "debug": "cross-env NODE_ENV=local midway-bin debug --ts", + "test": "npm run lint && midway-bin test --ts", + "cov": "midway-bin cov --ts", + "lint": "tslint --fix -p tsconfig.json -t stylish", + "ci": "npm run cov", + "build": "midway-bin build -c" + }, + "ci": { + "version": "10" + }, + "midway-bin-clean": [ + ".vscode/.tsbuildinfo", + "dist" + ], + "repository": { + "type": "git", + "url": "" + }, + "author": "Cai", + "license": "MIT" + }, + "baseDir": "E:\\self\\2020\\project\\game-node-center\\src", + "HOME": "C:\\Users\\Administrator", + "rundir": "E:\\self\\2020\\project\\game-node-center\\run", + "dump": { + "ignore": "" + }, + "confusedConfigurations": { + "bodyparser": "bodyParser", + "notFound": "notfound", + "sitefile": "siteFile", + "middlewares": "middleware", + "httpClient": "httpclient" + }, + "notfound": { + "pageUrl": "" + }, + "siteFile": { + "/favicon.ico": "" + }, + "bodyParser": { + "enable": true, + "encoding": "utf8", + "formLimit": "1mb", + "jsonLimit": "1mb", + "textLimit": "1mb", + "strict": true, + "queryString": { + "arrayLimit": 100, + "depth": 5, + "parameterLimit": 1000 + }, + "returnRawBody": true + }, + "logger": { + "dir": "E:\\self\\2020\\project\\game-node-center\\logs\\game-node-center", + "encoding": "utf8", + "env": "local", + "level": "INFO", + "consoleLevel": "INFO", + "disableConsoleAfterReady": false, + "outputJSON": false, + "buffer": true, + "appLogName": "app.log", + "coreLogName": "core.log", + "agentLogName": "agent.log", + "errorLogName": "error.log", + "coreLogger": { + "consoleLevel": "WARN" + }, + "allowDebugAtProd": false, + "type": "application" + }, + "httpclient": { + "enableDNSCache": false, + "dnsCacheLookupInterval": 10000, + "dnsCacheMaxLength": 1000, + "request": { + "timeout": 5000 + }, + "httpAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + }, + "httpsAgent": { + "keepAlive": true, + "freeSocketTimeout": 4000, + "maxSockets": 9007199254740991, + "maxFreeSockets": 256 + } + }, + "meta": { + "enable": true, + "logging": false + }, + "coreMiddleware": [ + "cors", + "meta", + "siteFile", + "notfound", + "static", + "bodyParser", + "overrideMethod", + "session", + "securities", + "i18n", + "eggLoaderTrace" + ], + "workerStartTimeout": 600000, + "serverTimeout": null, + "cluster": { + "listen": { + "path": "", + "port": 7001, + "hostname": "" + } + }, + "clusterClient": { + "maxWaitTime": 60000, + "responseTimeout": 60000 + }, + "onClientError": null, + "pluginOverwrite": false, + "container": { + "ignore": [ + "**/node_modules/**", + "**/logs/**", + "**/run/**", + "**/public/**", + "**/view/**", + "**/views/**", + "**/config/**", + "**/app/extend/**" + ], + "baseDir": "E:\\self\\2020\\project\\game-node-center\\src" + }, + "alinode": { + "logdir": "C:\\Users\\ADMINI\\x7e1\\AppData\\Local\\Temp", + "error_log": [ + "E:\\self\\2020\\project\\game-node-center\\logs\\game-node-center\\common-error.log", + "E:\\self\\2020\\project\\game-node-center\\logs\\stderr.log" + ], + "packages": [ + "E:\\self\\2020\\project\\game-node-center\\package.json" + ] + }, + "sourceUrl": "", + "elkLogger": { + "match": "", + "enable": true + }, + "middleware": [ + "jwt", + "elkLogger", + "notFound" + ], + "apiDomain": { + "loanDomain": "*" + }, + "coreMiddlewares": "~config~coreMiddleware", + "appMiddlewares": "~config~middleware", + "appMiddleware": "~config~middleware", + "multipartParseOptions": { + "autoFields": false, + "defCharset": "utf8", + "limits": { + "fieldNameSize": 100, + "fieldSize": 102400, + "fields": 10, + "fileSize": 10485760, + "files": 10 + }, + "checkFile": "" + } + }, + "plugins": { + "session": { + "enable": true, + "package": "egg-session", + "name": "session", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session", + "version": "3.1.0" + }, + "security": { + "enable": true, + "package": "egg-security", + "name": "security", + "dependencies": [], + "optionalDependencies": [ + "session" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security", + "version": "2.7.1" + }, + "jsonp": { + "enable": true, + "package": "egg-jsonp", + "name": "jsonp", + "dependencies": [], + "optionalDependencies": [ + "security" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp", + "version": "2.0.0" + }, + "onerror": { + "enable": true, + "package": "egg-onerror", + "name": "onerror", + "dependencies": [], + "optionalDependencies": [ + "jsonp" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror", + "version": "2.1.0" + }, + "i18n": { + "enable": true, + "package": "egg-i18n", + "name": "i18n", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n", + "version": "2.1.1" + }, + "watcher": { + "enable": true, + "package": "egg-watcher", + "name": "watcher", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher", + "version": "3.1.0" + }, + "schedule": { + "enable": true, + "package": "egg-schedule", + "name": "schedule", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule", + "version": "3.6.4" + }, + "multipart": { + "enable": true, + "package": "egg-multipart", + "name": "multipart", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart", + "version": "2.10.1" + }, + "development": { + "enable": true, + "package": "egg-development", + "name": "development", + "dependencies": [ + "watcher" + ], + "optionalDependencies": [], + "env": [ + "local" + ], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development", + "version": "2.4.3" + }, + "logrotator": { + "enable": true, + "package": "egg-logrotator", + "name": "logrotator", + "dependencies": [ + "schedule" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator", + "version": "3.1.0" + }, + "static": { + "enable": true, + "package": "egg-static", + "name": "static", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static", + "version": "2.2.0" + }, + "view": { + "enable": true, + "package": "egg-view", + "name": "view", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view", + "version": "2.1.2" + }, + "schedulePlus": { + "enable": true, + "package": "midway-schedule", + "name": "schedulePlus", + "dependencies": [], + "optionalDependencies": [ + "schedule" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\plugin.js", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-schedule", + "version": "1.15.1" + }, + "cors": { + "enable": true, + "package": "egg-cors", + "name": "cors", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-cors", + "version": "2.2.3" + }, + "redis": { + "enable": true, + "package": "egg-redis", + "name": "redis", + "dependencies": [], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis", + "version": "2.4.0" + }, + "io": { + "enable": true, + "package": "egg-socket.io", + "name": "io", + "dependencies": [ + "session" + ], + "optionalDependencies": [], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io", + "version": "4.1.6" + }, + "jwt": { + "enable": true, + "package": "egg-jwt", + "name": "jwt", + "dependencies": [], + "optionalDependencies": [ + "onerror" + ], + "env": [], + "from": "E:\\self\\2020\\project\\game-node-center\\src\\config\\plugin.ts", + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jwt", + "version": "3.1.7" + } + } +} \ No newline at end of file diff --git a/run/application_config_meta.json b/run/application_config_meta.json new file mode 100644 index 0000000..d4b1e04 --- /dev/null +++ b/run/application_config_meta.json @@ -0,0 +1,357 @@ +{ + "sourceUrl": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "elkLogger": { + "match": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "keys": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "middleware": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "security": { + "csrf": { + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "type": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "ignoreJSON": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.local.js", + "useSession": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "cookieName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "sessionName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "headerName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "bodyName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "queryName": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "refererWhiteList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "methodnoallow": { + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "domainWhiteList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "protocolWhiteList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "defaultMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "xframe": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "hsts": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.local.js", + "maxAge": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "includeSubdomains": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "dta": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "noopen": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "nosniff": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "referrerPolicy": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "xssProtection": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "value": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "csp": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "policy": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "ssrf": { + "ipBlackList": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js", + "checkAddress": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + } + }, + "cors": { + "allowMethods": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "credentials": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "origin": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "logger": { + "outputJSON": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "appLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "coreLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "agentLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "errorLogName": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "dir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "env": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "level": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "consoleLevel": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "disableConsoleAfterReady": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "buffer": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "coreLogger": { + "consoleLevel": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.local.js" + }, + "allowDebugAtProd": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "apiDomain": { + "loanDomain": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "jwt": { + "secret": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "enable": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "match": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "io": { + "namespace": { + "/socket": { + "connectionMiddleware": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "packetMiddleware": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "/": { + "connectionMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io\\config\\config.default.js", + "packetMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io\\config\\config.default.js" + } + }, + "redis": { + "host": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "port": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "init": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-socket.io\\config\\config.default.js" + }, + "redis": { + "client": { + "port": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "host": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "password": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts", + "db": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.default.ts" + }, + "default": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js", + "app": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js", + "agent": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js", + "supportTimeCommand": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-redis\\config\\config.default.js" + }, + "development": { + "watchDirs": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.local.ts", + "overrideDefault": "E:\\self\\2020\\project\\game-node-center\\src\\config\\config.local.ts", + "ignoreDirs": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development\\config\\config.default.js", + "fastReady": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development\\config\\config.default.js", + "reloadOnDebug": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-development\\config\\config.default.js" + }, + "session": { + "maxAge": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js", + "key": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js", + "httpOnly": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js", + "encrypt": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-session\\config\\config.default.js" + }, + "helper": { + "shtml": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-security\\config\\config.default.js" + }, + "jsonp": { + "limit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp\\config\\config.default.js", + "callback": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp\\config\\config.default.js", + "csrf": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-jsonp\\config\\config.default.js" + }, + "onerror": { + "errorPageUrl": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\config\\config.default.js", + "appErrorFilter": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\config\\config.default.js", + "templatePath": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-onerror\\config\\config.default.js" + }, + "i18n": { + "defaultLocale": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "dirs": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "queryField": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieField": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieDomain": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js", + "cookieMaxAge": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-i18n\\config\\config.default.js" + }, + "watcher": { + "type": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\config\\config.local.js", + "eventSources": { + "default": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\config\\config.default.js", + "development": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-watcher\\config\\config.default.js" + } + }, + "customLogger": { + "scheduleLogger": { + "consoleLevel": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule\\config\\config.default.js", + "file": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule\\config\\config.default.js" + } + }, + "schedule": { + "directory": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-schedule\\config\\config.default.js" + }, + "multipart": { + "mode": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "autoFields": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "defaultCharset": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldNameSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fieldSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fields": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fileSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "files": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "fileExtensions": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "whitelist": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "tmpdir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js", + "cleanSchedule": { + "cron": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-multipart\\config\\config.default.js" + } + }, + "logrotator": { + "filesRotateByHour": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "hourDelimiter": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "filesRotateBySize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFileSize": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxFiles": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "rotateDuration": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js", + "maxDays": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-logrotator\\config\\config.default.js" + }, + "static": { + "prefix": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "dir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "dynamic": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "preload": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "buffer": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js", + "maxFiles": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-static\\config\\config.default.js" + }, + "view": { + "root": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js", + "cache": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.local.js", + "defaultExtension": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js", + "defaultViewEngine": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js", + "mapping": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg-view\\config\\config.default.js" + }, + "env": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "name": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cookies": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "proxy": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxIpsCount": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxProxyCount": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "protocolHeaders": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "ipHeaders": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "hostHeaders": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "pkg": { + "name": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "version": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "description": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "private": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dependencies": { + "@types/socket.io": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-cors": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-jwt": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-redis": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-scripts": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-socket.io": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "midway": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "devDependencies": { + "@types/mocha": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "@types/node": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cross-env": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "egg-ci": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "midway-bin": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "midway-mock": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "ts-node": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "tslib": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "tslint": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "tslint-config-egg": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "typescript": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "engines": { + "node": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "scripts": { + "start": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "stop": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "start_build": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "clean": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dev": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "debug": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "test": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cov": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "lint": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "ci": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "build": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "ci": { + "version": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "midway-bin-clean": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "repository": { + "type": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "url": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "author": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "license": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "baseDir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "HOME": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "rundir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "dump": { + "ignore": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "confusedConfigurations": { + "bodyparser": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "notFound": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "sitefile": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "middlewares": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "httpClient": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "notfound": { + "pageUrl": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "siteFile": { + "/favicon.ico": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "bodyParser": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "encoding": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "formLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "jsonLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "textLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "strict": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "queryString": { + "arrayLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "depth": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "parameterLimit": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "onerror": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "httpclient": { + "enableDNSCache": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dnsCacheLookupInterval": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "dnsCacheMaxLength": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "request": { + "timeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "httpAgent": { + "keepAlive": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "httpsAgent": { + "keepAlive": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "freeSocketTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "maxFreeSockets": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + } + }, + "meta": { + "enable": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "logging": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "coreMiddleware": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "workerStartTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "serverTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "cluster": { + "listen": { + "path": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "port": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "hostname": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + } + }, + "clusterClient": { + "maxWaitTime": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "responseTimeout": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js" + }, + "onClientError": "E:\\self\\2020\\project\\game-node-center\\node_modules\\egg\\config\\config.default.js", + "pluginOverwrite": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "container": { + "ignore": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js" + }, + "alinode": { + "logdir": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "error_log": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js", + "packages": "E:\\self\\2020\\project\\game-node-center\\node_modules\\midway-web\\config\\config.default.js" + } +} \ No newline at end of file diff --git a/run/application_dependency_10236 b/run/application_dependency_10236 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_10236 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_10380 b/run/application_dependency_10380 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_10380 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_1080 b/run/application_dependency_1080 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_1080 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_10964 b/run/application_dependency_10964 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_10964 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_10988 b/run/application_dependency_10988 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_10988 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_112 b/run/application_dependency_112 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_112 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_11392 b/run/application_dependency_11392 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_11392 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_12068 b/run/application_dependency_12068 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_12068 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_12484 b/run/application_dependency_12484 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_12484 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_12628 b/run/application_dependency_12628 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_12628 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_12868 b/run/application_dependency_12868 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_12868 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_13060 b/run/application_dependency_13060 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_13060 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_13092 b/run/application_dependency_13092 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_13092 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_13128 b/run/application_dependency_13128 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_13128 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_13424 b/run/application_dependency_13424 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/application_dependency_13424 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_1356 b/run/application_dependency_1356 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_1356 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_13756 b/run/application_dependency_13756 new file mode 100644 index 0000000..9c4cbc2 --- /dev/null +++ b/run/application_dependency_13756 @@ -0,0 +1,18 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "nspController" [ label = "nspController(NspController) +scope:Request", fontsize = 10 ]; + "app"; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "app" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_13852 b/run/application_dependency_13852 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_13852 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14068 b/run/application_dependency_14068 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/application_dependency_14068 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14344 b/run/application_dependency_14344 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_14344 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14392 b/run/application_dependency_14392 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/application_dependency_14392 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14452 b/run/application_dependency_14452 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_14452 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14652 b/run/application_dependency_14652 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_14652 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14840 b/run/application_dependency_14840 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_14840 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14876 b/run/application_dependency_14876 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_14876 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_14992 b/run/application_dependency_14992 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_14992 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_15012 b/run/application_dependency_15012 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_15012 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_15420 b/run/application_dependency_15420 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_15420 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_15436 b/run/application_dependency_15436 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_15436 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_15916 b/run/application_dependency_15916 new file mode 100644 index 0000000..2f3e9ec --- /dev/null +++ b/run/application_dependency_15916 @@ -0,0 +1,2 @@ +digraph G { +} diff --git a/run/application_dependency_16208 b/run/application_dependency_16208 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_16208 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_16252 b/run/application_dependency_16252 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_16252 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_16560 b/run/application_dependency_16560 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/application_dependency_16560 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_16672 b/run/application_dependency_16672 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_16672 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_16924 b/run/application_dependency_16924 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_16924 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_16960 b/run/application_dependency_16960 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_16960 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_16996 b/run/application_dependency_16996 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/application_dependency_16996 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17044 b/run/application_dependency_17044 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_17044 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17080 b/run/application_dependency_17080 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_17080 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17220 b/run/application_dependency_17220 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_17220 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17424 b/run/application_dependency_17424 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_17424 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17692 b/run/application_dependency_17692 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_17692 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17740 b/run/application_dependency_17740 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_17740 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17828 b/run/application_dependency_17828 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/application_dependency_17828 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_17860 b/run/application_dependency_17860 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_17860 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_18424 b/run/application_dependency_18424 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_18424 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_18500 b/run/application_dependency_18500 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_18500 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_18756 b/run/application_dependency_18756 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_18756 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_18788 b/run/application_dependency_18788 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_18788 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_18800 b/run/application_dependency_18800 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/application_dependency_18800 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_18840 b/run/application_dependency_18840 new file mode 100644 index 0000000..9c4cbc2 --- /dev/null +++ b/run/application_dependency_18840 @@ -0,0 +1,18 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "nspController" [ label = "nspController(NspController) +scope:Request", fontsize = 10 ]; + "app"; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "app" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_18948 b/run/application_dependency_18948 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_18948 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_19104 b/run/application_dependency_19104 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_19104 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_19256 b/run/application_dependency_19256 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_19256 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_19660 b/run/application_dependency_19660 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_19660 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_20080 b/run/application_dependency_20080 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_20080 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_20424 b/run/application_dependency_20424 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_20424 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_20820 b/run/application_dependency_20820 new file mode 100644 index 0000000..4517198 --- /dev/null +++ b/run/application_dependency_20820 @@ -0,0 +1,9 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_20828 b/run/application_dependency_20828 new file mode 100644 index 0000000..9c4cbc2 --- /dev/null +++ b/run/application_dependency_20828 @@ -0,0 +1,18 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "nspController" [ label = "nspController(NspController) +scope:Request", fontsize = 10 ]; + "app"; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "app" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_21028 b/run/application_dependency_21028 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_21028 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_21032 b/run/application_dependency_21032 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_21032 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_21096 b/run/application_dependency_21096 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_21096 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_21572 b/run/application_dependency_21572 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_21572 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_21780 b/run/application_dependency_21780 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/application_dependency_21780 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_21804 b/run/application_dependency_21804 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_21804 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_21844 b/run/application_dependency_21844 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_21844 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_22008 b/run/application_dependency_22008 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_22008 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_22060 b/run/application_dependency_22060 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_22060 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_22096 b/run/application_dependency_22096 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_22096 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_22264 b/run/application_dependency_22264 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_22264 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_22340 b/run/application_dependency_22340 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_22340 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_23104 b/run/application_dependency_23104 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_23104 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_23152 b/run/application_dependency_23152 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_23152 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_23420 b/run/application_dependency_23420 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_23420 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_23884 b/run/application_dependency_23884 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_23884 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_24012 b/run/application_dependency_24012 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_24012 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_24028 b/run/application_dependency_24028 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_24028 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_24068 b/run/application_dependency_24068 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_24068 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_24152 b/run/application_dependency_24152 new file mode 100644 index 0000000..9c4cbc2 --- /dev/null +++ b/run/application_dependency_24152 @@ -0,0 +1,18 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "nspController" [ label = "nspController(NspController) +scope:Request", fontsize = 10 ]; + "app"; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "app" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_24436 b/run/application_dependency_24436 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_24436 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_25060 b/run/application_dependency_25060 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_25060 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_25116 b/run/application_dependency_25116 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_25116 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_25200 b/run/application_dependency_25200 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_25200 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_25372 b/run/application_dependency_25372 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_25372 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_25548 b/run/application_dependency_25548 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_25548 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_25708 b/run/application_dependency_25708 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_25708 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_26148 b/run/application_dependency_26148 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_26148 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_26204 b/run/application_dependency_26204 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_26204 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_26280 b/run/application_dependency_26280 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_26280 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_26456 b/run/application_dependency_26456 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_26456 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_26544 b/run/application_dependency_26544 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_26544 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_26656 b/run/application_dependency_26656 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_26656 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_26960 b/run/application_dependency_26960 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_26960 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27032 b/run/application_dependency_27032 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_27032 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27300 b/run/application_dependency_27300 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_27300 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27400 b/run/application_dependency_27400 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/application_dependency_27400 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27468 b/run/application_dependency_27468 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_27468 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27564 b/run/application_dependency_27564 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_27564 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27684 b/run/application_dependency_27684 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_27684 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27688 b/run/application_dependency_27688 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_27688 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27848 b/run/application_dependency_27848 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_27848 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_27852 b/run/application_dependency_27852 new file mode 100644 index 0000000..9c4cbc2 --- /dev/null +++ b/run/application_dependency_27852 @@ -0,0 +1,18 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "nspController" [ label = "nspController(NspController) +scope:Request", fontsize = 10 ]; + "app"; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "ctx" [ label = "properties", fontsize = 8 ]; + "nspController" -> "app" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_2800 b/run/application_dependency_2800 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/application_dependency_2800 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28176 b/run/application_dependency_28176 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28176 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28228 b/run/application_dependency_28228 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28228 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28268 b/run/application_dependency_28268 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28268 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28340 b/run/application_dependency_28340 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/application_dependency_28340 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28440 b/run/application_dependency_28440 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28440 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28464 b/run/application_dependency_28464 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28464 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28652 b/run/application_dependency_28652 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28652 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28832 b/run/application_dependency_28832 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28832 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28868 b/run/application_dependency_28868 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28868 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28888 b/run/application_dependency_28888 new file mode 100644 index 0000000..e45b8e3 --- /dev/null +++ b/run/application_dependency_28888 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "userController" [ label = "userController(UserController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "userController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_28892 b/run/application_dependency_28892 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_28892 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_29144 b/run/application_dependency_29144 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_29144 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_29220 b/run/application_dependency_29220 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_29220 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_29256 b/run/application_dependency_29256 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_29256 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_29348 b/run/application_dependency_29348 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_29348 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_29424 b/run/application_dependency_29424 new file mode 100644 index 0000000..918a681 --- /dev/null +++ b/run/application_dependency_29424 @@ -0,0 +1,12 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_29652 b/run/application_dependency_29652 new file mode 100644 index 0000000..2f3957f --- /dev/null +++ b/run/application_dependency_29652 @@ -0,0 +1,14 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "app"; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "app" [ label = "properties", fontsize = 8 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_3140 b/run/application_dependency_3140 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_3140 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_3800 b/run/application_dependency_3800 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_3800 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_424 b/run/application_dependency_424 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_424 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_4244 b/run/application_dependency_4244 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_4244 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_4364 b/run/application_dependency_4364 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_4364 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_5716 b/run/application_dependency_5716 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_5716 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7380 b/run/application_dependency_7380 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_7380 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7400 b/run/application_dependency_7400 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_7400 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7412 b/run/application_dependency_7412 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_7412 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7472 b/run/application_dependency_7472 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_7472 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7528 b/run/application_dependency_7528 new file mode 100644 index 0000000..2f3957f --- /dev/null +++ b/run/application_dependency_7528 @@ -0,0 +1,14 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "app"; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "authMiddleware" [ label = "authMiddleware(authMiddleware) +scope:Request", fontsize = 10 ]; + "AccountService" -> "app" [ label = "properties", fontsize = 8 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7768 b/run/application_dependency_7768 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_7768 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7856 b/run/application_dependency_7856 new file mode 100644 index 0000000..dd3879d --- /dev/null +++ b/run/application_dependency_7856 @@ -0,0 +1,15 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "authorization" [ label = "authorization(Authorization) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_7916 b/run/application_dependency_7916 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_7916 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_8424 b/run/application_dependency_8424 new file mode 100644 index 0000000..4517198 --- /dev/null +++ b/run/application_dependency_8424 @@ -0,0 +1,9 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_9176 b/run/application_dependency_9176 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_9176 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_9524 b/run/application_dependency_9524 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_9524 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_9556 b/run/application_dependency_9556 new file mode 100644 index 0000000..7305d6d --- /dev/null +++ b/run/application_dependency_9556 @@ -0,0 +1,10 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_9576 b/run/application_dependency_9576 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_9576 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_9696 b/run/application_dependency_9696 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_9696 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_dependency_9740 b/run/application_dependency_9740 new file mode 100644 index 0000000..ec34178 --- /dev/null +++ b/run/application_dependency_9740 @@ -0,0 +1,13 @@ +digraph G { + "AccountService" [ label = "AccountService(AccountService) +scope:Request", fontsize = 10 ]; + "ctx"; + "account" [ label = "account(Account) +scope:Request", fontsize = 10 ]; + "ocrAuthController" [ label = "ocrAuthController(OcrAuthController) +scope:Request", fontsize = 10 ]; + "AccountService" -> "ctx" [ label = "properties", fontsize = 8 ]; + "account" -> "AccountService" [ label = "properties", fontsize = 8 ]; + "account" -> "ctx" [ label = "properties", fontsize = 8 ]; + "ocrAuthController" -> "ctx" [ label = "properties", fontsize = 8 ]; +} diff --git a/run/application_timing_13424.json b/run/application_timing_13424.json new file mode 100644 index 0000000..04b229c --- /dev/null +++ b/run/application_timing_13424.json @@ -0,0 +1,706 @@ +[ + { + "name": "Application Start", + "start": 1585300354213, + "end": 1585300360273, + "duration": 6060, + "pid": 13424, + "index": 0 + }, + { + "name": "Load Plugin", + "start": 1585300354227, + "end": 1585300354354, + "duration": 127, + "pid": 13424, + "index": 1 + }, + { + "name": "Load Config", + "start": 1585300354354, + "end": 1585300354483, + "duration": 129, + "pid": 13424, + "index": 2 + }, + { + "name": "Require(0) config/config.default.ts", + "start": 1585300354356, + "end": 1585300354376, + "duration": 20, + "pid": 13424, + "index": 3 + }, + { + "name": "Require(1) config/config.local.ts", + "start": 1585300354378, + "end": 1585300354384, + "duration": 6, + "pid": 13424, + "index": 4 + }, + { + "name": "Require(2) E:/self/2020/project/game-node-center/node_modules/egg-session/config/config.default.js", + "start": 1585300354385, + "end": 1585300354386, + "duration": 1, + "pid": 13424, + "index": 5 + }, + { + "name": "Require(3) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.default.js", + "start": 1585300354387, + "end": 1585300354402, + "duration": 15, + "pid": 13424, + "index": 6 + }, + { + "name": "Require(4) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/config/config.default.js", + "start": 1585300354405, + "end": 1585300354406, + "duration": 1, + "pid": 13424, + "index": 7 + }, + { + "name": "Require(5) E:/self/2020/project/game-node-center/node_modules/egg-onerror/config/config.default.js", + "start": 1585300354407, + "end": 1585300354408, + "duration": 1, + "pid": 13424, + "index": 8 + }, + { + "name": "Require(6) E:/self/2020/project/game-node-center/node_modules/egg-i18n/config/config.default.js", + "start": 1585300354409, + "end": 1585300354410, + "duration": 1, + "pid": 13424, + "index": 9 + }, + { + "name": "Require(7) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.default.js", + "start": 1585300354411, + "end": 1585300354412, + "duration": 1, + "pid": 13424, + "index": 10 + }, + { + "name": "Require(8) E:/self/2020/project/game-node-center/node_modules/egg-schedule/config/config.default.js", + "start": 1585300354413, + "end": 1585300354413, + "duration": 0, + "pid": 13424, + "index": 11 + }, + { + "name": "Require(9) E:/self/2020/project/game-node-center/node_modules/egg-multipart/config/config.default.js", + "start": 1585300354414, + "end": 1585300354418, + "duration": 4, + "pid": 13424, + "index": 12 + }, + { + "name": "Require(10) E:/self/2020/project/game-node-center/node_modules/egg-development/config/config.default.js", + "start": 1585300354419, + "end": 1585300354421, + "duration": 2, + "pid": 13424, + "index": 13 + }, + { + "name": "Require(11) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/config/config.default.js", + "start": 1585300354422, + "end": 1585300354426, + "duration": 4, + "pid": 13424, + "index": 14 + }, + { + "name": "Require(12) E:/self/2020/project/game-node-center/node_modules/egg-static/config/config.default.js", + "start": 1585300354427, + "end": 1585300354429, + "duration": 2, + "pid": 13424, + "index": 15 + }, + { + "name": "Require(13) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.default.js", + "start": 1585300354430, + "end": 1585300354432, + "duration": 2, + "pid": 13424, + "index": 16 + }, + { + "name": "Require(14) E:/self/2020/project/game-node-center/node_modules/egg-cors/config/config.default.js", + "start": 1585300354435, + "end": 1585300354436, + "duration": 1, + "pid": 13424, + "index": 17 + }, + { + "name": "Require(15) E:/self/2020/project/game-node-center/node_modules/egg-redis/config/config.default.js", + "start": 1585300354437, + "end": 1585300354445, + "duration": 8, + "pid": 13424, + "index": 18 + }, + { + "name": "Require(16) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/config/config.default.js", + "start": 1585300354446, + "end": 1585300354450, + "duration": 4, + "pid": 13424, + "index": 19 + }, + { + "name": "Require(17) E:/self/2020/project/game-node-center/node_modules/egg-jwt/config/config.default.js", + "start": 1585300354451, + "end": 1585300354452, + "duration": 1, + "pid": 13424, + "index": 20 + }, + { + "name": "Require(18) E:/self/2020/project/game-node-center/node_modules/egg/config/config.default.js", + "start": 1585300354453, + "end": 1585300354454, + "duration": 1, + "pid": 13424, + "index": 21 + }, + { + "name": "Require(19) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.default.js", + "start": 1585300354457, + "end": 1585300354462, + "duration": 5, + "pid": 13424, + "index": 22 + }, + { + "name": "Require(20) config/config.default.ts", + "start": 1585300354463, + "end": 1585300354463, + "duration": 0, + "pid": 13424, + "index": 23 + }, + { + "name": "Require(21) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.local.js", + "start": 1585300354466, + "end": 1585300354466, + "duration": 0, + "pid": 13424, + "index": 24 + }, + { + "name": "Require(22) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.local.js", + "start": 1585300354470, + "end": 1585300354470, + "duration": 0, + "pid": 13424, + "index": 25 + }, + { + "name": "Require(23) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.local.js", + "start": 1585300354475, + "end": 1585300354475, + "duration": 0, + "pid": 13424, + "index": 26 + }, + { + "name": "Require(24) E:/self/2020/project/game-node-center/node_modules/egg/config/config.local.js", + "start": 1585300354480, + "end": 1585300354481, + "duration": 1, + "pid": 13424, + "index": 27 + }, + { + "name": "Require(25) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.local.js", + "start": 1585300354482, + "end": 1585300354482, + "duration": 0, + "pid": 13424, + "index": 28 + }, + { + "name": "Require(26) config/config.local.ts", + "start": 1585300354483, + "end": 1585300354483, + "duration": 0, + "pid": 13424, + "index": 29 + }, + { + "name": "Load extend/application.js", + "start": 1585300354484, + "end": 1585300354950, + "duration": 466, + "pid": 13424, + "index": 30 + }, + { + "name": "Require(27) E:/self/2020/project/game-node-center/node_modules/egg-session/app/extend/application.js", + "start": 1585300354486, + "end": 1585300354488, + "duration": 2, + "pid": 13424, + "index": 31 + }, + { + "name": "Require(28) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/application.js", + "start": 1585300354489, + "end": 1585300354492, + "duration": 3, + "pid": 13424, + "index": 32 + }, + { + "name": "Require(29) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/application.js", + "start": 1585300354494, + "end": 1585300354497, + "duration": 3, + "pid": 13424, + "index": 33 + }, + { + "name": "Require(30) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app/extend/application.js", + "start": 1585300354503, + "end": 1585300354507, + "duration": 4, + "pid": 13424, + "index": 34 + }, + { + "name": "Require(31) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/application.js", + "start": 1585300354509, + "end": 1585300354513, + "duration": 4, + "pid": 13424, + "index": 35 + }, + { + "name": "Require(32) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app/extend/application.js", + "start": 1585300354516, + "end": 1585300354655, + "duration": 139, + "pid": 13424, + "index": 36 + }, + { + "name": "Require(33) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app/extend/application.js", + "start": 1585300354656, + "end": 1585300354933, + "duration": 277, + "pid": 13424, + "index": 37 + }, + { + "name": "Load extend/request.js", + "start": 1585300354950, + "end": 1585300355004, + "duration": 54, + "pid": 13424, + "index": 38 + }, + { + "name": "Require(34) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/request.js", + "start": 1585300354964, + "end": 1585300354988, + "duration": 24, + "pid": 13424, + "index": 39 + }, + { + "name": "Load extend/response.js", + "start": 1585300355004, + "end": 1585300355038, + "duration": 34, + "pid": 13424, + "index": 40 + }, + { + "name": "Require(35) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/response.js", + "start": 1585300355018, + "end": 1585300355022, + "duration": 4, + "pid": 13424, + "index": 41 + }, + { + "name": "Load extend/context.js", + "start": 1585300355038, + "end": 1585300355695, + "duration": 657, + "pid": 13424, + "index": 42 + }, + { + "name": "Require(36) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/context.js", + "start": 1585300355040, + "end": 1585300355136, + "duration": 96, + "pid": 13424, + "index": 43 + }, + { + "name": "Require(37) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/context.js", + "start": 1585300355138, + "end": 1585300355149, + "duration": 11, + "pid": 13424, + "index": 44 + }, + { + "name": "Require(38) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app/extend/context.js", + "start": 1585300355151, + "end": 1585300355152, + "duration": 1, + "pid": 13424, + "index": 45 + }, + { + "name": "Require(39) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app/extend/context.js", + "start": 1585300355156, + "end": 1585300355616, + "duration": 460, + "pid": 13424, + "index": 46 + }, + { + "name": "Require(40) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/context.js", + "start": 1585300355619, + "end": 1585300355622, + "duration": 3, + "pid": 13424, + "index": 47 + }, + { + "name": "Require(41) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/context.js", + "start": 1585300355627, + "end": 1585300355646, + "duration": 19, + "pid": 13424, + "index": 48 + }, + { + "name": "Require(42) E:/self/2020/project/game-node-center/node_modules/midway-web/app/extend/context.js", + "start": 1585300355652, + "end": 1585300355653, + "duration": 1, + "pid": 13424, + "index": 49 + }, + { + "name": "Require(43) app/extend/context.ts", + "start": 1585300355655, + "end": 1585300355681, + "duration": 26, + "pid": 13424, + "index": 50 + }, + { + "name": "Load extend/helper.js", + "start": 1585300355695, + "end": 1585300355831, + "duration": 136, + "pid": 13424, + "index": 51 + }, + { + "name": "Require(44) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/helper.js", + "start": 1585300355696, + "end": 1585300355787, + "duration": 91, + "pid": 13424, + "index": 52 + }, + { + "name": "Require(45) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/helper.js", + "start": 1585300355797, + "end": 1585300355798, + "duration": 1, + "pid": 13424, + "index": 53 + }, + { + "name": "Require(46) app/extend/helper.ts", + "start": 1585300355801, + "end": 1585300355818, + "duration": 17, + "pid": 13424, + "index": 54 + }, + { + "name": "Load app.js", + "start": 1585300359198, + "end": 1585300359638, + "duration": 440, + "pid": 13424, + "index": 55 + }, + { + "name": "Require(47) E:/self/2020/project/game-node-center/node_modules/egg-session/app.js", + "start": 1585300359199, + "end": 1585300359199, + "duration": 0, + "pid": 13424, + "index": 56 + }, + { + "name": "Require(48) E:/self/2020/project/game-node-center/node_modules/egg-security/app.js", + "start": 1585300359200, + "end": 1585300359224, + "duration": 24, + "pid": 13424, + "index": 57 + }, + { + "name": "Require(49) E:/self/2020/project/game-node-center/node_modules/egg-onerror/app.js", + "start": 1585300359230, + "end": 1585300359310, + "duration": 80, + "pid": 13424, + "index": 58 + }, + { + "name": "Require(50) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app.js", + "start": 1585300359311, + "end": 1585300359431, + "duration": 120, + "pid": 13424, + "index": 59 + }, + { + "name": "Require(51) E:/self/2020/project/game-node-center/node_modules/egg-watcher/app.js", + "start": 1585300359433, + "end": 1585300359442, + "duration": 9, + "pid": 13424, + "index": 60 + }, + { + "name": "Require(52) E:/self/2020/project/game-node-center/node_modules/egg-schedule/app.js", + "start": 1585300359445, + "end": 1585300359449, + "duration": 4, + "pid": 13424, + "index": 61 + }, + { + "name": "Require(53) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app.js", + "start": 1585300359450, + "end": 1585300359465, + "duration": 15, + "pid": 13424, + "index": 62 + }, + { + "name": "Require(54) E:/self/2020/project/game-node-center/node_modules/egg-development/app.js", + "start": 1585300359465, + "end": 1585300359466, + "duration": 1, + "pid": 13424, + "index": 63 + }, + { + "name": "Require(55) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app.js", + "start": 1585300359467, + "end": 1585300359467, + "duration": 0, + "pid": 13424, + "index": 64 + }, + { + "name": "Require(56) E:/self/2020/project/game-node-center/node_modules/egg-static/app.js", + "start": 1585300359468, + "end": 1585300359468, + "duration": 0, + "pid": 13424, + "index": 65 + }, + { + "name": "Require(57) E:/self/2020/project/game-node-center/node_modules/midway-schedule/app.js", + "start": 1585300359471, + "end": 1585300359481, + "duration": 10, + "pid": 13424, + "index": 66 + }, + { + "name": "Require(58) E:/self/2020/project/game-node-center/node_modules/egg-cors/app.js", + "start": 1585300359482, + "end": 1585300359489, + "duration": 7, + "pid": 13424, + "index": 67 + }, + { + "name": "Require(59) E:/self/2020/project/game-node-center/node_modules/egg-redis/app.js", + "start": 1585300359490, + "end": 1585300359497, + "duration": 7, + "pid": 13424, + "index": 68 + }, + { + "name": "Require(60) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app.js", + "start": 1585300359497, + "end": 1585300359634, + "duration": 137, + "pid": 13424, + "index": 69 + }, + { + "name": "Require(61) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app.js", + "start": 1585300359635, + "end": 1585300359635, + "duration": 0, + "pid": 13424, + "index": 70 + }, + { + "name": "Require(62) app.ts", + "start": 1585300359638, + "end": 1585300359638, + "duration": 0, + "pid": 13424, + "index": 71 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-watcher/lib/init.js:15:14", + "start": 1585300359648, + "end": 1585300360272, + "duration": 624, + "pid": 13424, + "index": 72 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-redis/lib/redis.js:53:7", + "start": 1585300359836, + "end": 1585300360266, + "duration": 430, + "pid": 13424, + "index": 73 + }, + { + "name": "Load Controller", + "start": 1585300359861, + "end": 1585300360199, + "duration": 338, + "pid": 13424, + "index": 74 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585300359861, + "end": 1585300360199, + "duration": 338, + "pid": 13424, + "index": 75 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-socket.io/lib/io.js:26:7", + "start": 1585300359871, + "end": 1585300360256, + "duration": 385, + "pid": 13424, + "index": 76 + }, + { + "name": "Before Start in app.ts:6:9", + "start": 1585300359874, + "end": 1585300360256, + "duration": 382, + "pid": 13424, + "index": 77 + }, + { + "name": "Load Service", + "start": 1585300359875, + "end": 1585300359886, + "duration": 11, + "pid": 13424, + "index": 78 + }, + { + "name": "Load \"service\" to Context", + "start": 1585300359876, + "end": 1585300359886, + "duration": 10, + "pid": 13424, + "index": 79 + }, + { + "name": "Load Middleware", + "start": 1585300359886, + "end": 1585300360199, + "duration": 313, + "pid": 13424, + "index": 80 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1585300359886, + "end": 1585300360184, + "duration": 298, + "pid": 13424, + "index": 81 + }, + { + "name": "Load Controller", + "start": 1585300360199, + "end": 1585300360202, + "duration": 3, + "pid": 13424, + "index": 82 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585300360199, + "end": 1585300360202, + "duration": 3, + "pid": 13424, + "index": 83 + }, + { + "name": "Load Router", + "start": 1585300360202, + "end": 1585300360203, + "duration": 1, + "pid": 13424, + "index": 84 + }, + { + "name": "Require(63) app/router.ts", + "start": 1585300360202, + "end": 1585300360202, + "duration": 0, + "pid": 13424, + "index": 85 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/midway-web/dist/loader/loader.js:28:18", + "start": 1585300360203, + "end": 1585300360258, + "duration": 55, + "pid": 13424, + "index": 86 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-core/lib/egg.js:303:10", + "start": 1585300360209, + "end": 1585300360256, + "duration": 47, + "pid": 13424, + "index": 87 + } +] \ No newline at end of file diff --git a/run/application_timing_16560.json b/run/application_timing_16560.json new file mode 100644 index 0000000..4a880fd --- /dev/null +++ b/run/application_timing_16560.json @@ -0,0 +1,706 @@ +[ + { + "name": "Application Start", + "start": 1585289116775, + "end": 1585289120446, + "duration": 3671, + "pid": 16560, + "index": 0 + }, + { + "name": "Load Plugin", + "start": 1585289116783, + "end": 1585289116835, + "duration": 52, + "pid": 16560, + "index": 1 + }, + { + "name": "Load Config", + "start": 1585289116835, + "end": 1585289116907, + "duration": 72, + "pid": 16560, + "index": 2 + }, + { + "name": "Require(0) config/config.default.ts", + "start": 1585289116836, + "end": 1585289116837, + "duration": 1, + "pid": 16560, + "index": 3 + }, + { + "name": "Require(1) config/config.local.ts", + "start": 1585289116841, + "end": 1585289116844, + "duration": 3, + "pid": 16560, + "index": 4 + }, + { + "name": "Require(2) E:/self/2020/project/game-node-center/node_modules/egg-session/config/config.default.js", + "start": 1585289116845, + "end": 1585289116847, + "duration": 2, + "pid": 16560, + "index": 5 + }, + { + "name": "Require(3) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.default.js", + "start": 1585289116847, + "end": 1585289116848, + "duration": 1, + "pid": 16560, + "index": 6 + }, + { + "name": "Require(4) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/config/config.default.js", + "start": 1585289116850, + "end": 1585289116851, + "duration": 1, + "pid": 16560, + "index": 7 + }, + { + "name": "Require(5) E:/self/2020/project/game-node-center/node_modules/egg-onerror/config/config.default.js", + "start": 1585289116853, + "end": 1585289116854, + "duration": 1, + "pid": 16560, + "index": 8 + }, + { + "name": "Require(6) E:/self/2020/project/game-node-center/node_modules/egg-i18n/config/config.default.js", + "start": 1585289116855, + "end": 1585289116856, + "duration": 1, + "pid": 16560, + "index": 9 + }, + { + "name": "Require(7) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.default.js", + "start": 1585289116858, + "end": 1585289116860, + "duration": 2, + "pid": 16560, + "index": 10 + }, + { + "name": "Require(8) E:/self/2020/project/game-node-center/node_modules/egg-schedule/config/config.default.js", + "start": 1585289116862, + "end": 1585289116863, + "duration": 1, + "pid": 16560, + "index": 11 + }, + { + "name": "Require(9) E:/self/2020/project/game-node-center/node_modules/egg-multipart/config/config.default.js", + "start": 1585289116865, + "end": 1585289116866, + "duration": 1, + "pid": 16560, + "index": 12 + }, + { + "name": "Require(10) E:/self/2020/project/game-node-center/node_modules/egg-development/config/config.default.js", + "start": 1585289116867, + "end": 1585289116869, + "duration": 2, + "pid": 16560, + "index": 13 + }, + { + "name": "Require(11) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/config/config.default.js", + "start": 1585289116870, + "end": 1585289116871, + "duration": 1, + "pid": 16560, + "index": 14 + }, + { + "name": "Require(12) E:/self/2020/project/game-node-center/node_modules/egg-static/config/config.default.js", + "start": 1585289116871, + "end": 1585289116873, + "duration": 2, + "pid": 16560, + "index": 15 + }, + { + "name": "Require(13) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.default.js", + "start": 1585289116874, + "end": 1585289116875, + "duration": 1, + "pid": 16560, + "index": 16 + }, + { + "name": "Require(14) E:/self/2020/project/game-node-center/node_modules/egg-cors/config/config.default.js", + "start": 1585289116877, + "end": 1585289116878, + "duration": 1, + "pid": 16560, + "index": 17 + }, + { + "name": "Require(15) E:/self/2020/project/game-node-center/node_modules/egg-redis/config/config.default.js", + "start": 1585289116879, + "end": 1585289116880, + "duration": 1, + "pid": 16560, + "index": 18 + }, + { + "name": "Require(16) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/config/config.default.js", + "start": 1585289116881, + "end": 1585289116882, + "duration": 1, + "pid": 16560, + "index": 19 + }, + { + "name": "Require(17) E:/self/2020/project/game-node-center/node_modules/egg-jwt/config/config.default.js", + "start": 1585289116883, + "end": 1585289116884, + "duration": 1, + "pid": 16560, + "index": 20 + }, + { + "name": "Require(18) E:/self/2020/project/game-node-center/node_modules/egg/config/config.default.js", + "start": 1585289116884, + "end": 1585289116885, + "duration": 1, + "pid": 16560, + "index": 21 + }, + { + "name": "Require(19) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.default.js", + "start": 1585289116887, + "end": 1585289116889, + "duration": 2, + "pid": 16560, + "index": 22 + }, + { + "name": "Require(20) config/config.default.ts", + "start": 1585289116890, + "end": 1585289116890, + "duration": 0, + "pid": 16560, + "index": 23 + }, + { + "name": "Require(21) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.local.js", + "start": 1585289116891, + "end": 1585289116892, + "duration": 1, + "pid": 16560, + "index": 24 + }, + { + "name": "Require(22) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.local.js", + "start": 1585289116896, + "end": 1585289116897, + "duration": 1, + "pid": 16560, + "index": 25 + }, + { + "name": "Require(23) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.local.js", + "start": 1585289116900, + "end": 1585289116901, + "duration": 1, + "pid": 16560, + "index": 26 + }, + { + "name": "Require(24) E:/self/2020/project/game-node-center/node_modules/egg/config/config.local.js", + "start": 1585289116905, + "end": 1585289116906, + "duration": 1, + "pid": 16560, + "index": 27 + }, + { + "name": "Require(25) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.local.js", + "start": 1585289116906, + "end": 1585289116907, + "duration": 1, + "pid": 16560, + "index": 28 + }, + { + "name": "Require(26) config/config.local.ts", + "start": 1585289116907, + "end": 1585289116907, + "duration": 0, + "pid": 16560, + "index": 29 + }, + { + "name": "Load extend/application.js", + "start": 1585289116908, + "end": 1585289117122, + "duration": 214, + "pid": 16560, + "index": 30 + }, + { + "name": "Require(27) E:/self/2020/project/game-node-center/node_modules/egg-session/app/extend/application.js", + "start": 1585289116909, + "end": 1585289116910, + "duration": 1, + "pid": 16560, + "index": 31 + }, + { + "name": "Require(28) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/application.js", + "start": 1585289116911, + "end": 1585289116914, + "duration": 3, + "pid": 16560, + "index": 32 + }, + { + "name": "Require(29) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/application.js", + "start": 1585289116915, + "end": 1585289116917, + "duration": 2, + "pid": 16560, + "index": 33 + }, + { + "name": "Require(30) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app/extend/application.js", + "start": 1585289116922, + "end": 1585289116926, + "duration": 4, + "pid": 16560, + "index": 34 + }, + { + "name": "Require(31) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/application.js", + "start": 1585289116928, + "end": 1585289116932, + "duration": 4, + "pid": 16560, + "index": 35 + }, + { + "name": "Require(32) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app/extend/application.js", + "start": 1585289116938, + "end": 1585289117021, + "duration": 83, + "pid": 16560, + "index": 36 + }, + { + "name": "Require(33) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app/extend/application.js", + "start": 1585289117022, + "end": 1585289117105, + "duration": 83, + "pid": 16560, + "index": 37 + }, + { + "name": "Load extend/request.js", + "start": 1585289117122, + "end": 1585289117150, + "duration": 28, + "pid": 16560, + "index": 38 + }, + { + "name": "Require(34) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/request.js", + "start": 1585289117134, + "end": 1585289117135, + "duration": 1, + "pid": 16560, + "index": 39 + }, + { + "name": "Load extend/response.js", + "start": 1585289117150, + "end": 1585289117181, + "duration": 31, + "pid": 16560, + "index": 40 + }, + { + "name": "Require(35) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/response.js", + "start": 1585289117162, + "end": 1585289117165, + "duration": 3, + "pid": 16560, + "index": 41 + }, + { + "name": "Load extend/context.js", + "start": 1585289117181, + "end": 1585289117297, + "duration": 116, + "pid": 16560, + "index": 42 + }, + { + "name": "Require(36) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/context.js", + "start": 1585289117182, + "end": 1585289117203, + "duration": 21, + "pid": 16560, + "index": 43 + }, + { + "name": "Require(37) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/context.js", + "start": 1585289117204, + "end": 1585289117206, + "duration": 2, + "pid": 16560, + "index": 44 + }, + { + "name": "Require(38) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app/extend/context.js", + "start": 1585289117208, + "end": 1585289117208, + "duration": 0, + "pid": 16560, + "index": 45 + }, + { + "name": "Require(39) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app/extend/context.js", + "start": 1585289117211, + "end": 1585289117270, + "duration": 59, + "pid": 16560, + "index": 46 + }, + { + "name": "Require(40) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/context.js", + "start": 1585289117272, + "end": 1585289117274, + "duration": 2, + "pid": 16560, + "index": 47 + }, + { + "name": "Require(41) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/context.js", + "start": 1585289117278, + "end": 1585289117279, + "duration": 1, + "pid": 16560, + "index": 48 + }, + { + "name": "Require(42) E:/self/2020/project/game-node-center/node_modules/midway-web/app/extend/context.js", + "start": 1585289117280, + "end": 1585289117281, + "duration": 1, + "pid": 16560, + "index": 49 + }, + { + "name": "Require(43) app/extend/context.ts", + "start": 1585289117282, + "end": 1585289117283, + "duration": 1, + "pid": 16560, + "index": 50 + }, + { + "name": "Load extend/helper.js", + "start": 1585289117297, + "end": 1585289117355, + "duration": 58, + "pid": 16560, + "index": 51 + }, + { + "name": "Require(44) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/helper.js", + "start": 1585289117298, + "end": 1585289117328, + "duration": 30, + "pid": 16560, + "index": 52 + }, + { + "name": "Require(45) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/helper.js", + "start": 1585289117338, + "end": 1585289117338, + "duration": 0, + "pid": 16560, + "index": 53 + }, + { + "name": "Require(46) app/extend/helper.ts", + "start": 1585289117340, + "end": 1585289117341, + "duration": 1, + "pid": 16560, + "index": 54 + }, + { + "name": "Load app.js", + "start": 1585289119886, + "end": 1585289120042, + "duration": 156, + "pid": 16560, + "index": 55 + }, + { + "name": "Require(47) E:/self/2020/project/game-node-center/node_modules/egg-session/app.js", + "start": 1585289119887, + "end": 1585289119888, + "duration": 1, + "pid": 16560, + "index": 56 + }, + { + "name": "Require(48) E:/self/2020/project/game-node-center/node_modules/egg-security/app.js", + "start": 1585289119888, + "end": 1585289119891, + "duration": 3, + "pid": 16560, + "index": 57 + }, + { + "name": "Require(49) E:/self/2020/project/game-node-center/node_modules/egg-onerror/app.js", + "start": 1585289119893, + "end": 1585289119907, + "duration": 14, + "pid": 16560, + "index": 58 + }, + { + "name": "Require(50) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app.js", + "start": 1585289119908, + "end": 1585289119936, + "duration": 28, + "pid": 16560, + "index": 59 + }, + { + "name": "Require(51) E:/self/2020/project/game-node-center/node_modules/egg-watcher/app.js", + "start": 1585289119936, + "end": 1585289119940, + "duration": 4, + "pid": 16560, + "index": 60 + }, + { + "name": "Require(52) E:/self/2020/project/game-node-center/node_modules/egg-schedule/app.js", + "start": 1585289119942, + "end": 1585289119945, + "duration": 3, + "pid": 16560, + "index": 61 + }, + { + "name": "Require(53) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app.js", + "start": 1585289119945, + "end": 1585289119951, + "duration": 6, + "pid": 16560, + "index": 62 + }, + { + "name": "Require(54) E:/self/2020/project/game-node-center/node_modules/egg-development/app.js", + "start": 1585289119952, + "end": 1585289119952, + "duration": 0, + "pid": 16560, + "index": 63 + }, + { + "name": "Require(55) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app.js", + "start": 1585289119953, + "end": 1585289119953, + "duration": 0, + "pid": 16560, + "index": 64 + }, + { + "name": "Require(56) E:/self/2020/project/game-node-center/node_modules/egg-static/app.js", + "start": 1585289119954, + "end": 1585289119954, + "duration": 0, + "pid": 16560, + "index": 65 + }, + { + "name": "Require(57) E:/self/2020/project/game-node-center/node_modules/midway-schedule/app.js", + "start": 1585289119956, + "end": 1585289119957, + "duration": 1, + "pid": 16560, + "index": 66 + }, + { + "name": "Require(58) E:/self/2020/project/game-node-center/node_modules/egg-cors/app.js", + "start": 1585289119958, + "end": 1585289119958, + "duration": 0, + "pid": 16560, + "index": 67 + }, + { + "name": "Require(59) E:/self/2020/project/game-node-center/node_modules/egg-redis/app.js", + "start": 1585289119959, + "end": 1585289119962, + "duration": 3, + "pid": 16560, + "index": 68 + }, + { + "name": "Require(60) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app.js", + "start": 1585289119962, + "end": 1585289120038, + "duration": 76, + "pid": 16560, + "index": 69 + }, + { + "name": "Require(61) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app.js", + "start": 1585289120039, + "end": 1585289120039, + "duration": 0, + "pid": 16560, + "index": 70 + }, + { + "name": "Require(62) app.ts", + "start": 1585289120042, + "end": 1585289120042, + "duration": 0, + "pid": 16560, + "index": 71 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-watcher/lib/init.js:15:14", + "start": 1585289120052, + "end": 1585289120446, + "duration": 394, + "pid": 16560, + "index": 72 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-redis/lib/redis.js:53:7", + "start": 1585289120164, + "end": 1585289120441, + "duration": 277, + "pid": 16560, + "index": 73 + }, + { + "name": "Load Controller", + "start": 1585289120212, + "end": 1585289120387, + "duration": 175, + "pid": 16560, + "index": 74 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585289120212, + "end": 1585289120387, + "duration": 175, + "pid": 16560, + "index": 75 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-socket.io/lib/io.js:26:7", + "start": 1585289120222, + "end": 1585289120418, + "duration": 196, + "pid": 16560, + "index": 76 + }, + { + "name": "Before Start in app.ts:6:9", + "start": 1585289120225, + "end": 1585289120418, + "duration": 193, + "pid": 16560, + "index": 77 + }, + { + "name": "Load Service", + "start": 1585289120226, + "end": 1585289120236, + "duration": 10, + "pid": 16560, + "index": 78 + }, + { + "name": "Load \"service\" to Context", + "start": 1585289120226, + "end": 1585289120236, + "duration": 10, + "pid": 16560, + "index": 79 + }, + { + "name": "Load Middleware", + "start": 1585289120236, + "end": 1585289120387, + "duration": 151, + "pid": 16560, + "index": 80 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1585289120236, + "end": 1585289120377, + "duration": 141, + "pid": 16560, + "index": 81 + }, + { + "name": "Load Controller", + "start": 1585289120387, + "end": 1585289120389, + "duration": 2, + "pid": 16560, + "index": 82 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585289120387, + "end": 1585289120389, + "duration": 2, + "pid": 16560, + "index": 83 + }, + { + "name": "Load Router", + "start": 1585289120389, + "end": 1585289120390, + "duration": 1, + "pid": 16560, + "index": 84 + }, + { + "name": "Require(63) app/router.ts", + "start": 1585289120390, + "end": 1585289120390, + "duration": 0, + "pid": 16560, + "index": 85 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/midway-web/dist/loader/loader.js:28:18", + "start": 1585289120390, + "end": 1585289120420, + "duration": 30, + "pid": 16560, + "index": 86 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-core/lib/egg.js:303:10", + "start": 1585289120396, + "end": 1585289120418, + "duration": 22, + "pid": 16560, + "index": 87 + } +] \ No newline at end of file diff --git a/run/application_timing_21780.json b/run/application_timing_21780.json new file mode 100644 index 0000000..b35191c --- /dev/null +++ b/run/application_timing_21780.json @@ -0,0 +1,706 @@ +[ + { + "name": "Application Start", + "start": 1585289113560, + "end": 1585289114706, + "duration": 1146, + "pid": 21780, + "index": 0 + }, + { + "name": "Load Plugin", + "start": 1585289113576, + "end": 1585289113631, + "duration": 55, + "pid": 21780, + "index": 1 + }, + { + "name": "Load Config", + "start": 1585289113631, + "end": 1585289113693, + "duration": 62, + "pid": 21780, + "index": 2 + }, + { + "name": "Require(0) config/config.default.ts", + "start": 1585289113632, + "end": 1585289113634, + "duration": 2, + "pid": 21780, + "index": 3 + }, + { + "name": "Require(1) config/config.local.ts", + "start": 1585289113635, + "end": 1585289113637, + "duration": 2, + "pid": 21780, + "index": 4 + }, + { + "name": "Require(2) E:/self/2020/project/game-node-center/node_modules/egg-session/config/config.default.js", + "start": 1585289113638, + "end": 1585289113639, + "duration": 1, + "pid": 21780, + "index": 5 + }, + { + "name": "Require(3) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.default.js", + "start": 1585289113640, + "end": 1585289113640, + "duration": 0, + "pid": 21780, + "index": 6 + }, + { + "name": "Require(4) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/config/config.default.js", + "start": 1585289113642, + "end": 1585289113643, + "duration": 1, + "pid": 21780, + "index": 7 + }, + { + "name": "Require(5) E:/self/2020/project/game-node-center/node_modules/egg-onerror/config/config.default.js", + "start": 1585289113644, + "end": 1585289113644, + "duration": 0, + "pid": 21780, + "index": 8 + }, + { + "name": "Require(6) E:/self/2020/project/game-node-center/node_modules/egg-i18n/config/config.default.js", + "start": 1585289113646, + "end": 1585289113647, + "duration": 1, + "pid": 21780, + "index": 9 + }, + { + "name": "Require(7) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.default.js", + "start": 1585289113647, + "end": 1585289113648, + "duration": 1, + "pid": 21780, + "index": 10 + }, + { + "name": "Require(8) E:/self/2020/project/game-node-center/node_modules/egg-schedule/config/config.default.js", + "start": 1585289113649, + "end": 1585289113650, + "duration": 1, + "pid": 21780, + "index": 11 + }, + { + "name": "Require(9) E:/self/2020/project/game-node-center/node_modules/egg-multipart/config/config.default.js", + "start": 1585289113651, + "end": 1585289113652, + "duration": 1, + "pid": 21780, + "index": 12 + }, + { + "name": "Require(10) E:/self/2020/project/game-node-center/node_modules/egg-development/config/config.default.js", + "start": 1585289113653, + "end": 1585289113654, + "duration": 1, + "pid": 21780, + "index": 13 + }, + { + "name": "Require(11) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/config/config.default.js", + "start": 1585289113654, + "end": 1585289113655, + "duration": 1, + "pid": 21780, + "index": 14 + }, + { + "name": "Require(12) E:/self/2020/project/game-node-center/node_modules/egg-static/config/config.default.js", + "start": 1585289113656, + "end": 1585289113657, + "duration": 1, + "pid": 21780, + "index": 15 + }, + { + "name": "Require(13) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.default.js", + "start": 1585289113658, + "end": 1585289113659, + "duration": 1, + "pid": 21780, + "index": 16 + }, + { + "name": "Require(14) E:/self/2020/project/game-node-center/node_modules/egg-cors/config/config.default.js", + "start": 1585289113662, + "end": 1585289113662, + "duration": 0, + "pid": 21780, + "index": 17 + }, + { + "name": "Require(15) E:/self/2020/project/game-node-center/node_modules/egg-redis/config/config.default.js", + "start": 1585289113663, + "end": 1585289113664, + "duration": 1, + "pid": 21780, + "index": 18 + }, + { + "name": "Require(16) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/config/config.default.js", + "start": 1585289113665, + "end": 1585289113666, + "duration": 1, + "pid": 21780, + "index": 19 + }, + { + "name": "Require(17) E:/self/2020/project/game-node-center/node_modules/egg-jwt/config/config.default.js", + "start": 1585289113666, + "end": 1585289113667, + "duration": 1, + "pid": 21780, + "index": 20 + }, + { + "name": "Require(18) E:/self/2020/project/game-node-center/node_modules/egg/config/config.default.js", + "start": 1585289113668, + "end": 1585289113668, + "duration": 0, + "pid": 21780, + "index": 21 + }, + { + "name": "Require(19) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.default.js", + "start": 1585289113671, + "end": 1585289113672, + "duration": 1, + "pid": 21780, + "index": 22 + }, + { + "name": "Require(20) config/config.default.ts", + "start": 1585289113674, + "end": 1585289113674, + "duration": 0, + "pid": 21780, + "index": 23 + }, + { + "name": "Require(21) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.local.js", + "start": 1585289113676, + "end": 1585289113676, + "duration": 0, + "pid": 21780, + "index": 24 + }, + { + "name": "Require(22) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.local.js", + "start": 1585289113679, + "end": 1585289113680, + "duration": 1, + "pid": 21780, + "index": 25 + }, + { + "name": "Require(23) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.local.js", + "start": 1585289113684, + "end": 1585289113685, + "duration": 1, + "pid": 21780, + "index": 26 + }, + { + "name": "Require(24) E:/self/2020/project/game-node-center/node_modules/egg/config/config.local.js", + "start": 1585289113691, + "end": 1585289113692, + "duration": 1, + "pid": 21780, + "index": 27 + }, + { + "name": "Require(25) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.local.js", + "start": 1585289113692, + "end": 1585289113693, + "duration": 1, + "pid": 21780, + "index": 28 + }, + { + "name": "Require(26) config/config.local.ts", + "start": 1585289113693, + "end": 1585289113693, + "duration": 0, + "pid": 21780, + "index": 29 + }, + { + "name": "Load extend/application.js", + "start": 1585289113694, + "end": 1585289113877, + "duration": 183, + "pid": 21780, + "index": 30 + }, + { + "name": "Require(27) E:/self/2020/project/game-node-center/node_modules/egg-session/app/extend/application.js", + "start": 1585289113695, + "end": 1585289113696, + "duration": 1, + "pid": 21780, + "index": 31 + }, + { + "name": "Require(28) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/application.js", + "start": 1585289113697, + "end": 1585289113700, + "duration": 3, + "pid": 21780, + "index": 32 + }, + { + "name": "Require(29) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/application.js", + "start": 1585289113701, + "end": 1585289113703, + "duration": 2, + "pid": 21780, + "index": 33 + }, + { + "name": "Require(30) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app/extend/application.js", + "start": 1585289113708, + "end": 1585289113711, + "duration": 3, + "pid": 21780, + "index": 34 + }, + { + "name": "Require(31) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/application.js", + "start": 1585289113713, + "end": 1585289113716, + "duration": 3, + "pid": 21780, + "index": 35 + }, + { + "name": "Require(32) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app/extend/application.js", + "start": 1585289113719, + "end": 1585289113782, + "duration": 63, + "pid": 21780, + "index": 36 + }, + { + "name": "Require(33) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app/extend/application.js", + "start": 1585289113783, + "end": 1585289113862, + "duration": 79, + "pid": 21780, + "index": 37 + }, + { + "name": "Load extend/request.js", + "start": 1585289113877, + "end": 1585289113907, + "duration": 30, + "pid": 21780, + "index": 38 + }, + { + "name": "Require(34) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/request.js", + "start": 1585289113890, + "end": 1585289113892, + "duration": 2, + "pid": 21780, + "index": 39 + }, + { + "name": "Load extend/response.js", + "start": 1585289113907, + "end": 1585289113937, + "duration": 30, + "pid": 21780, + "index": 40 + }, + { + "name": "Require(35) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/response.js", + "start": 1585289113918, + "end": 1585289113922, + "duration": 4, + "pid": 21780, + "index": 41 + }, + { + "name": "Load extend/context.js", + "start": 1585289113937, + "end": 1585289114050, + "duration": 113, + "pid": 21780, + "index": 42 + }, + { + "name": "Require(36) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/context.js", + "start": 1585289113938, + "end": 1585289113958, + "duration": 20, + "pid": 21780, + "index": 43 + }, + { + "name": "Require(37) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/context.js", + "start": 1585289113958, + "end": 1585289113961, + "duration": 3, + "pid": 21780, + "index": 44 + }, + { + "name": "Require(38) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app/extend/context.js", + "start": 1585289113963, + "end": 1585289113963, + "duration": 0, + "pid": 21780, + "index": 45 + }, + { + "name": "Require(39) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app/extend/context.js", + "start": 1585289113966, + "end": 1585289114023, + "duration": 57, + "pid": 21780, + "index": 46 + }, + { + "name": "Require(40) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/context.js", + "start": 1585289114026, + "end": 1585289114027, + "duration": 1, + "pid": 21780, + "index": 47 + }, + { + "name": "Require(41) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/context.js", + "start": 1585289114032, + "end": 1585289114033, + "duration": 1, + "pid": 21780, + "index": 48 + }, + { + "name": "Require(42) E:/self/2020/project/game-node-center/node_modules/midway-web/app/extend/context.js", + "start": 1585289114034, + "end": 1585289114035, + "duration": 1, + "pid": 21780, + "index": 49 + }, + { + "name": "Require(43) app/extend/context.ts", + "start": 1585289114036, + "end": 1585289114037, + "duration": 1, + "pid": 21780, + "index": 50 + }, + { + "name": "Load extend/helper.js", + "start": 1585289114050, + "end": 1585289114108, + "duration": 58, + "pid": 21780, + "index": 51 + }, + { + "name": "Require(44) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/helper.js", + "start": 1585289114052, + "end": 1585289114081, + "duration": 29, + "pid": 21780, + "index": 52 + }, + { + "name": "Require(45) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/helper.js", + "start": 1585289114092, + "end": 1585289114092, + "duration": 0, + "pid": 21780, + "index": 53 + }, + { + "name": "Require(46) app/extend/helper.ts", + "start": 1585289114094, + "end": 1585289114096, + "duration": 2, + "pid": 21780, + "index": 54 + }, + { + "name": "Load app.js", + "start": 1585289114179, + "end": 1585289114331, + "duration": 152, + "pid": 21780, + "index": 55 + }, + { + "name": "Require(47) E:/self/2020/project/game-node-center/node_modules/egg-session/app.js", + "start": 1585289114179, + "end": 1585289114180, + "duration": 1, + "pid": 21780, + "index": 56 + }, + { + "name": "Require(48) E:/self/2020/project/game-node-center/node_modules/egg-security/app.js", + "start": 1585289114181, + "end": 1585289114184, + "duration": 3, + "pid": 21780, + "index": 57 + }, + { + "name": "Require(49) E:/self/2020/project/game-node-center/node_modules/egg-onerror/app.js", + "start": 1585289114186, + "end": 1585289114200, + "duration": 14, + "pid": 21780, + "index": 58 + }, + { + "name": "Require(50) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app.js", + "start": 1585289114201, + "end": 1585289114227, + "duration": 26, + "pid": 21780, + "index": 59 + }, + { + "name": "Require(51) E:/self/2020/project/game-node-center/node_modules/egg-watcher/app.js", + "start": 1585289114228, + "end": 1585289114233, + "duration": 5, + "pid": 21780, + "index": 60 + }, + { + "name": "Require(52) E:/self/2020/project/game-node-center/node_modules/egg-schedule/app.js", + "start": 1585289114234, + "end": 1585289114238, + "duration": 4, + "pid": 21780, + "index": 61 + }, + { + "name": "Require(53) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app.js", + "start": 1585289114239, + "end": 1585289114246, + "duration": 7, + "pid": 21780, + "index": 62 + }, + { + "name": "Require(54) E:/self/2020/project/game-node-center/node_modules/egg-development/app.js", + "start": 1585289114247, + "end": 1585289114247, + "duration": 0, + "pid": 21780, + "index": 63 + }, + { + "name": "Require(55) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app.js", + "start": 1585289114248, + "end": 1585289114248, + "duration": 0, + "pid": 21780, + "index": 64 + }, + { + "name": "Require(56) E:/self/2020/project/game-node-center/node_modules/egg-static/app.js", + "start": 1585289114249, + "end": 1585289114249, + "duration": 0, + "pid": 21780, + "index": 65 + }, + { + "name": "Require(57) E:/self/2020/project/game-node-center/node_modules/midway-schedule/app.js", + "start": 1585289114251, + "end": 1585289114252, + "duration": 1, + "pid": 21780, + "index": 66 + }, + { + "name": "Require(58) E:/self/2020/project/game-node-center/node_modules/egg-cors/app.js", + "start": 1585289114253, + "end": 1585289114253, + "duration": 0, + "pid": 21780, + "index": 67 + }, + { + "name": "Require(59) E:/self/2020/project/game-node-center/node_modules/egg-redis/app.js", + "start": 1585289114254, + "end": 1585289114256, + "duration": 2, + "pid": 21780, + "index": 68 + }, + { + "name": "Require(60) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app.js", + "start": 1585289114256, + "end": 1585289114326, + "duration": 70, + "pid": 21780, + "index": 69 + }, + { + "name": "Require(61) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app.js", + "start": 1585289114327, + "end": 1585289114328, + "duration": 1, + "pid": 21780, + "index": 70 + }, + { + "name": "Require(62) app.ts", + "start": 1585289114331, + "end": 1585289114331, + "duration": 0, + "pid": 21780, + "index": 71 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-watcher/lib/init.js:15:14", + "start": 1585289114340, + "end": 1585289114706, + "duration": 366, + "pid": 21780, + "index": 72 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-redis/lib/redis.js:53:7", + "start": 1585289114450, + "end": 1585289114697, + "duration": 247, + "pid": 21780, + "index": 73 + }, + { + "name": "Load Controller", + "start": 1585289114465, + "end": 1585289114661, + "duration": 196, + "pid": 21780, + "index": 74 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585289114466, + "end": 1585289114661, + "duration": 195, + "pid": 21780, + "index": 75 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-socket.io/lib/io.js:26:7", + "start": 1585289114475, + "end": 1585289114682, + "duration": 207, + "pid": 21780, + "index": 76 + }, + { + "name": "Before Start in app.ts:6:9", + "start": 1585289114480, + "end": 1585289114682, + "duration": 202, + "pid": 21780, + "index": 77 + }, + { + "name": "Load Service", + "start": 1585289114482, + "end": 1585289114497, + "duration": 15, + "pid": 21780, + "index": 78 + }, + { + "name": "Load \"service\" to Context", + "start": 1585289114483, + "end": 1585289114497, + "duration": 14, + "pid": 21780, + "index": 79 + }, + { + "name": "Load Middleware", + "start": 1585289114497, + "end": 1585289114661, + "duration": 164, + "pid": 21780, + "index": 80 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1585289114497, + "end": 1585289114650, + "duration": 153, + "pid": 21780, + "index": 81 + }, + { + "name": "Load Controller", + "start": 1585289114661, + "end": 1585289114663, + "duration": 2, + "pid": 21780, + "index": 82 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585289114661, + "end": 1585289114663, + "duration": 2, + "pid": 21780, + "index": 83 + }, + { + "name": "Load Router", + "start": 1585289114663, + "end": 1585289114664, + "duration": 1, + "pid": 21780, + "index": 84 + }, + { + "name": "Require(63) app/router.ts", + "start": 1585289114663, + "end": 1585289114663, + "duration": 0, + "pid": 21780, + "index": 85 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/midway-web/dist/loader/loader.js:28:18", + "start": 1585289114664, + "end": 1585289114683, + "duration": 19, + "pid": 21780, + "index": 86 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-core/lib/egg.js:303:10", + "start": 1585289114669, + "end": 1585289114682, + "duration": 13, + "pid": 21780, + "index": 87 + } +] \ No newline at end of file diff --git a/run/application_timing_27400.json b/run/application_timing_27400.json new file mode 100644 index 0000000..6a6469e --- /dev/null +++ b/run/application_timing_27400.json @@ -0,0 +1,706 @@ +[ + { + "name": "Application Start", + "start": 1585289299486, + "end": 1585289303172, + "duration": 3686, + "pid": 27400, + "index": 0 + }, + { + "name": "Load Plugin", + "start": 1585289299493, + "end": 1585289299543, + "duration": 50, + "pid": 27400, + "index": 1 + }, + { + "name": "Load Config", + "start": 1585289299543, + "end": 1585289299603, + "duration": 60, + "pid": 27400, + "index": 2 + }, + { + "name": "Require(0) config/config.default.ts", + "start": 1585289299545, + "end": 1585289299546, + "duration": 1, + "pid": 27400, + "index": 3 + }, + { + "name": "Require(1) config/config.local.ts", + "start": 1585289299548, + "end": 1585289299550, + "duration": 2, + "pid": 27400, + "index": 4 + }, + { + "name": "Require(2) E:/self/2020/project/game-node-center/node_modules/egg-session/config/config.default.js", + "start": 1585289299551, + "end": 1585289299552, + "duration": 1, + "pid": 27400, + "index": 5 + }, + { + "name": "Require(3) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.default.js", + "start": 1585289299553, + "end": 1585289299553, + "duration": 0, + "pid": 27400, + "index": 6 + }, + { + "name": "Require(4) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/config/config.default.js", + "start": 1585289299555, + "end": 1585289299556, + "duration": 1, + "pid": 27400, + "index": 7 + }, + { + "name": "Require(5) E:/self/2020/project/game-node-center/node_modules/egg-onerror/config/config.default.js", + "start": 1585289299557, + "end": 1585289299558, + "duration": 1, + "pid": 27400, + "index": 8 + }, + { + "name": "Require(6) E:/self/2020/project/game-node-center/node_modules/egg-i18n/config/config.default.js", + "start": 1585289299558, + "end": 1585289299559, + "duration": 1, + "pid": 27400, + "index": 9 + }, + { + "name": "Require(7) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.default.js", + "start": 1585289299560, + "end": 1585289299561, + "duration": 1, + "pid": 27400, + "index": 10 + }, + { + "name": "Require(8) E:/self/2020/project/game-node-center/node_modules/egg-schedule/config/config.default.js", + "start": 1585289299561, + "end": 1585289299562, + "duration": 1, + "pid": 27400, + "index": 11 + }, + { + "name": "Require(9) E:/self/2020/project/game-node-center/node_modules/egg-multipart/config/config.default.js", + "start": 1585289299563, + "end": 1585289299564, + "duration": 1, + "pid": 27400, + "index": 12 + }, + { + "name": "Require(10) E:/self/2020/project/game-node-center/node_modules/egg-development/config/config.default.js", + "start": 1585289299565, + "end": 1585289299566, + "duration": 1, + "pid": 27400, + "index": 13 + }, + { + "name": "Require(11) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/config/config.default.js", + "start": 1585289299567, + "end": 1585289299569, + "duration": 2, + "pid": 27400, + "index": 14 + }, + { + "name": "Require(12) E:/self/2020/project/game-node-center/node_modules/egg-static/config/config.default.js", + "start": 1585289299570, + "end": 1585289299571, + "duration": 1, + "pid": 27400, + "index": 15 + }, + { + "name": "Require(13) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.default.js", + "start": 1585289299572, + "end": 1585289299573, + "duration": 1, + "pid": 27400, + "index": 16 + }, + { + "name": "Require(14) E:/self/2020/project/game-node-center/node_modules/egg-cors/config/config.default.js", + "start": 1585289299575, + "end": 1585289299576, + "duration": 1, + "pid": 27400, + "index": 17 + }, + { + "name": "Require(15) E:/self/2020/project/game-node-center/node_modules/egg-redis/config/config.default.js", + "start": 1585289299577, + "end": 1585289299578, + "duration": 1, + "pid": 27400, + "index": 18 + }, + { + "name": "Require(16) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/config/config.default.js", + "start": 1585289299579, + "end": 1585289299580, + "duration": 1, + "pid": 27400, + "index": 19 + }, + { + "name": "Require(17) E:/self/2020/project/game-node-center/node_modules/egg-jwt/config/config.default.js", + "start": 1585289299580, + "end": 1585289299581, + "duration": 1, + "pid": 27400, + "index": 20 + }, + { + "name": "Require(18) E:/self/2020/project/game-node-center/node_modules/egg/config/config.default.js", + "start": 1585289299582, + "end": 1585289299583, + "duration": 1, + "pid": 27400, + "index": 21 + }, + { + "name": "Require(19) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.default.js", + "start": 1585289299584, + "end": 1585289299586, + "duration": 2, + "pid": 27400, + "index": 22 + }, + { + "name": "Require(20) config/config.default.ts", + "start": 1585289299587, + "end": 1585289299587, + "duration": 0, + "pid": 27400, + "index": 23 + }, + { + "name": "Require(21) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.local.js", + "start": 1585289299588, + "end": 1585289299589, + "duration": 1, + "pid": 27400, + "index": 24 + }, + { + "name": "Require(22) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.local.js", + "start": 1585289299591, + "end": 1585289299592, + "duration": 1, + "pid": 27400, + "index": 25 + }, + { + "name": "Require(23) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.local.js", + "start": 1585289299596, + "end": 1585289299597, + "duration": 1, + "pid": 27400, + "index": 26 + }, + { + "name": "Require(24) E:/self/2020/project/game-node-center/node_modules/egg/config/config.local.js", + "start": 1585289299602, + "end": 1585289299602, + "duration": 0, + "pid": 27400, + "index": 27 + }, + { + "name": "Require(25) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.local.js", + "start": 1585289299603, + "end": 1585289299603, + "duration": 0, + "pid": 27400, + "index": 28 + }, + { + "name": "Require(26) config/config.local.ts", + "start": 1585289299603, + "end": 1585289299603, + "duration": 0, + "pid": 27400, + "index": 29 + }, + { + "name": "Load extend/application.js", + "start": 1585289299604, + "end": 1585289299787, + "duration": 183, + "pid": 27400, + "index": 30 + }, + { + "name": "Require(27) E:/self/2020/project/game-node-center/node_modules/egg-session/app/extend/application.js", + "start": 1585289299605, + "end": 1585289299606, + "duration": 1, + "pid": 27400, + "index": 31 + }, + { + "name": "Require(28) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/application.js", + "start": 1585289299607, + "end": 1585289299609, + "duration": 2, + "pid": 27400, + "index": 32 + }, + { + "name": "Require(29) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/application.js", + "start": 1585289299610, + "end": 1585289299613, + "duration": 3, + "pid": 27400, + "index": 33 + }, + { + "name": "Require(30) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app/extend/application.js", + "start": 1585289299618, + "end": 1585289299620, + "duration": 2, + "pid": 27400, + "index": 34 + }, + { + "name": "Require(31) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/application.js", + "start": 1585289299623, + "end": 1585289299626, + "duration": 3, + "pid": 27400, + "index": 35 + }, + { + "name": "Require(32) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app/extend/application.js", + "start": 1585289299629, + "end": 1585289299693, + "duration": 64, + "pid": 27400, + "index": 36 + }, + { + "name": "Require(33) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app/extend/application.js", + "start": 1585289299694, + "end": 1585289299772, + "duration": 78, + "pid": 27400, + "index": 37 + }, + { + "name": "Load extend/request.js", + "start": 1585289299787, + "end": 1585289299816, + "duration": 29, + "pid": 27400, + "index": 38 + }, + { + "name": "Require(34) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/request.js", + "start": 1585289299799, + "end": 1585289299800, + "duration": 1, + "pid": 27400, + "index": 39 + }, + { + "name": "Load extend/response.js", + "start": 1585289299816, + "end": 1585289299847, + "duration": 31, + "pid": 27400, + "index": 40 + }, + { + "name": "Require(35) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/response.js", + "start": 1585289299829, + "end": 1585289299832, + "duration": 3, + "pid": 27400, + "index": 41 + }, + { + "name": "Load extend/context.js", + "start": 1585289299847, + "end": 1585289299965, + "duration": 118, + "pid": 27400, + "index": 42 + }, + { + "name": "Require(36) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/context.js", + "start": 1585289299849, + "end": 1585289299869, + "duration": 20, + "pid": 27400, + "index": 43 + }, + { + "name": "Require(37) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/context.js", + "start": 1585289299870, + "end": 1585289299874, + "duration": 4, + "pid": 27400, + "index": 44 + }, + { + "name": "Require(38) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app/extend/context.js", + "start": 1585289299875, + "end": 1585289299876, + "duration": 1, + "pid": 27400, + "index": 45 + }, + { + "name": "Require(39) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app/extend/context.js", + "start": 1585289299878, + "end": 1585289299937, + "duration": 59, + "pid": 27400, + "index": 46 + }, + { + "name": "Require(40) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/context.js", + "start": 1585289299940, + "end": 1585289299941, + "duration": 1, + "pid": 27400, + "index": 47 + }, + { + "name": "Require(41) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/context.js", + "start": 1585289299945, + "end": 1585289299946, + "duration": 1, + "pid": 27400, + "index": 48 + }, + { + "name": "Require(42) E:/self/2020/project/game-node-center/node_modules/midway-web/app/extend/context.js", + "start": 1585289299947, + "end": 1585289299948, + "duration": 1, + "pid": 27400, + "index": 49 + }, + { + "name": "Require(43) app/extend/context.ts", + "start": 1585289299950, + "end": 1585289299952, + "duration": 2, + "pid": 27400, + "index": 50 + }, + { + "name": "Load extend/helper.js", + "start": 1585289299965, + "end": 1585289300023, + "duration": 58, + "pid": 27400, + "index": 51 + }, + { + "name": "Require(44) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/helper.js", + "start": 1585289299966, + "end": 1585289299995, + "duration": 29, + "pid": 27400, + "index": 52 + }, + { + "name": "Require(45) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/helper.js", + "start": 1585289300007, + "end": 1585289300007, + "duration": 0, + "pid": 27400, + "index": 53 + }, + { + "name": "Require(46) app/extend/helper.ts", + "start": 1585289300009, + "end": 1585289300010, + "duration": 1, + "pid": 27400, + "index": 54 + }, + { + "name": "Load app.js", + "start": 1585289302593, + "end": 1585289302739, + "duration": 146, + "pid": 27400, + "index": 55 + }, + { + "name": "Require(47) E:/self/2020/project/game-node-center/node_modules/egg-session/app.js", + "start": 1585289302594, + "end": 1585289302594, + "duration": 0, + "pid": 27400, + "index": 56 + }, + { + "name": "Require(48) E:/self/2020/project/game-node-center/node_modules/egg-security/app.js", + "start": 1585289302595, + "end": 1585289302598, + "duration": 3, + "pid": 27400, + "index": 57 + }, + { + "name": "Require(49) E:/self/2020/project/game-node-center/node_modules/egg-onerror/app.js", + "start": 1585289302599, + "end": 1585289302613, + "duration": 14, + "pid": 27400, + "index": 58 + }, + { + "name": "Require(50) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app.js", + "start": 1585289302614, + "end": 1585289302640, + "duration": 26, + "pid": 27400, + "index": 59 + }, + { + "name": "Require(51) E:/self/2020/project/game-node-center/node_modules/egg-watcher/app.js", + "start": 1585289302641, + "end": 1585289302645, + "duration": 4, + "pid": 27400, + "index": 60 + }, + { + "name": "Require(52) E:/self/2020/project/game-node-center/node_modules/egg-schedule/app.js", + "start": 1585289302647, + "end": 1585289302649, + "duration": 2, + "pid": 27400, + "index": 61 + }, + { + "name": "Require(53) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app.js", + "start": 1585289302649, + "end": 1585289302654, + "duration": 5, + "pid": 27400, + "index": 62 + }, + { + "name": "Require(54) E:/self/2020/project/game-node-center/node_modules/egg-development/app.js", + "start": 1585289302655, + "end": 1585289302656, + "duration": 1, + "pid": 27400, + "index": 63 + }, + { + "name": "Require(55) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app.js", + "start": 1585289302657, + "end": 1585289302657, + "duration": 0, + "pid": 27400, + "index": 64 + }, + { + "name": "Require(56) E:/self/2020/project/game-node-center/node_modules/egg-static/app.js", + "start": 1585289302658, + "end": 1585289302658, + "duration": 0, + "pid": 27400, + "index": 65 + }, + { + "name": "Require(57) E:/self/2020/project/game-node-center/node_modules/midway-schedule/app.js", + "start": 1585289302660, + "end": 1585289302661, + "duration": 1, + "pid": 27400, + "index": 66 + }, + { + "name": "Require(58) E:/self/2020/project/game-node-center/node_modules/egg-cors/app.js", + "start": 1585289302661, + "end": 1585289302662, + "duration": 1, + "pid": 27400, + "index": 67 + }, + { + "name": "Require(59) E:/self/2020/project/game-node-center/node_modules/egg-redis/app.js", + "start": 1585289302662, + "end": 1585289302664, + "duration": 2, + "pid": 27400, + "index": 68 + }, + { + "name": "Require(60) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app.js", + "start": 1585289302665, + "end": 1585289302733, + "duration": 68, + "pid": 27400, + "index": 69 + }, + { + "name": "Require(61) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app.js", + "start": 1585289302734, + "end": 1585289302735, + "duration": 1, + "pid": 27400, + "index": 70 + }, + { + "name": "Require(62) app.ts", + "start": 1585289302738, + "end": 1585289302738, + "duration": 0, + "pid": 27400, + "index": 71 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-watcher/lib/init.js:15:14", + "start": 1585289302749, + "end": 1585289303172, + "duration": 423, + "pid": 27400, + "index": 72 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-redis/lib/redis.js:53:7", + "start": 1585289302864, + "end": 1585289303166, + "duration": 302, + "pid": 27400, + "index": 73 + }, + { + "name": "Load Controller", + "start": 1585289302900, + "end": 1585289303117, + "duration": 217, + "pid": 27400, + "index": 74 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585289302900, + "end": 1585289303117, + "duration": 217, + "pid": 27400, + "index": 75 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-socket.io/lib/io.js:26:7", + "start": 1585289302952, + "end": 1585289303154, + "duration": 202, + "pid": 27400, + "index": 76 + }, + { + "name": "Before Start in app.ts:6:9", + "start": 1585289302955, + "end": 1585289303154, + "duration": 199, + "pid": 27400, + "index": 77 + }, + { + "name": "Load Service", + "start": 1585289302956, + "end": 1585289302965, + "duration": 9, + "pid": 27400, + "index": 78 + }, + { + "name": "Load \"service\" to Context", + "start": 1585289302956, + "end": 1585289302965, + "duration": 9, + "pid": 27400, + "index": 79 + }, + { + "name": "Load Middleware", + "start": 1585289302965, + "end": 1585289303117, + "duration": 152, + "pid": 27400, + "index": 80 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1585289302965, + "end": 1585289303105, + "duration": 140, + "pid": 27400, + "index": 81 + }, + { + "name": "Load Controller", + "start": 1585289303117, + "end": 1585289303119, + "duration": 2, + "pid": 27400, + "index": 82 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585289303117, + "end": 1585289303119, + "duration": 2, + "pid": 27400, + "index": 83 + }, + { + "name": "Load Router", + "start": 1585289303119, + "end": 1585289303120, + "duration": 1, + "pid": 27400, + "index": 84 + }, + { + "name": "Require(63) app/router.ts", + "start": 1585289303120, + "end": 1585289303120, + "duration": 0, + "pid": 27400, + "index": 85 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/midway-web/dist/loader/loader.js:28:18", + "start": 1585289303120, + "end": 1585289303157, + "duration": 37, + "pid": 27400, + "index": 86 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-core/lib/egg.js:303:10", + "start": 1585289303126, + "end": 1585289303154, + "duration": 28, + "pid": 27400, + "index": 87 + } +] \ No newline at end of file diff --git a/run/application_timing_28888.json b/run/application_timing_28888.json new file mode 100644 index 0000000..b637014 --- /dev/null +++ b/run/application_timing_28888.json @@ -0,0 +1,706 @@ +[ + { + "name": "Application Start", + "start": 1585300409003, + "end": 1585300412522, + "duration": 3519, + "pid": 28888, + "index": 0 + }, + { + "name": "Load Plugin", + "start": 1585300409009, + "end": 1585300409059, + "duration": 50, + "pid": 28888, + "index": 1 + }, + { + "name": "Load Config", + "start": 1585300409059, + "end": 1585300409117, + "duration": 58, + "pid": 28888, + "index": 2 + }, + { + "name": "Require(0) config/config.default.ts", + "start": 1585300409060, + "end": 1585300409061, + "duration": 1, + "pid": 28888, + "index": 3 + }, + { + "name": "Require(1) config/config.local.ts", + "start": 1585300409064, + "end": 1585300409065, + "duration": 1, + "pid": 28888, + "index": 4 + }, + { + "name": "Require(2) E:/self/2020/project/game-node-center/node_modules/egg-session/config/config.default.js", + "start": 1585300409066, + "end": 1585300409067, + "duration": 1, + "pid": 28888, + "index": 5 + }, + { + "name": "Require(3) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.default.js", + "start": 1585300409068, + "end": 1585300409069, + "duration": 1, + "pid": 28888, + "index": 6 + }, + { + "name": "Require(4) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/config/config.default.js", + "start": 1585300409070, + "end": 1585300409071, + "duration": 1, + "pid": 28888, + "index": 7 + }, + { + "name": "Require(5) E:/self/2020/project/game-node-center/node_modules/egg-onerror/config/config.default.js", + "start": 1585300409071, + "end": 1585300409072, + "duration": 1, + "pid": 28888, + "index": 8 + }, + { + "name": "Require(6) E:/self/2020/project/game-node-center/node_modules/egg-i18n/config/config.default.js", + "start": 1585300409073, + "end": 1585300409074, + "duration": 1, + "pid": 28888, + "index": 9 + }, + { + "name": "Require(7) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.default.js", + "start": 1585300409075, + "end": 1585300409076, + "duration": 1, + "pid": 28888, + "index": 10 + }, + { + "name": "Require(8) E:/self/2020/project/game-node-center/node_modules/egg-schedule/config/config.default.js", + "start": 1585300409077, + "end": 1585300409077, + "duration": 0, + "pid": 28888, + "index": 11 + }, + { + "name": "Require(9) E:/self/2020/project/game-node-center/node_modules/egg-multipart/config/config.default.js", + "start": 1585300409078, + "end": 1585300409079, + "duration": 1, + "pid": 28888, + "index": 12 + }, + { + "name": "Require(10) E:/self/2020/project/game-node-center/node_modules/egg-development/config/config.default.js", + "start": 1585300409080, + "end": 1585300409081, + "duration": 1, + "pid": 28888, + "index": 13 + }, + { + "name": "Require(11) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/config/config.default.js", + "start": 1585300409082, + "end": 1585300409083, + "duration": 1, + "pid": 28888, + "index": 14 + }, + { + "name": "Require(12) E:/self/2020/project/game-node-center/node_modules/egg-static/config/config.default.js", + "start": 1585300409084, + "end": 1585300409084, + "duration": 0, + "pid": 28888, + "index": 15 + }, + { + "name": "Require(13) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.default.js", + "start": 1585300409085, + "end": 1585300409086, + "duration": 1, + "pid": 28888, + "index": 16 + }, + { + "name": "Require(14) E:/self/2020/project/game-node-center/node_modules/egg-cors/config/config.default.js", + "start": 1585300409088, + "end": 1585300409089, + "duration": 1, + "pid": 28888, + "index": 17 + }, + { + "name": "Require(15) E:/self/2020/project/game-node-center/node_modules/egg-redis/config/config.default.js", + "start": 1585300409090, + "end": 1585300409091, + "duration": 1, + "pid": 28888, + "index": 18 + }, + { + "name": "Require(16) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/config/config.default.js", + "start": 1585300409092, + "end": 1585300409093, + "duration": 1, + "pid": 28888, + "index": 19 + }, + { + "name": "Require(17) E:/self/2020/project/game-node-center/node_modules/egg-jwt/config/config.default.js", + "start": 1585300409093, + "end": 1585300409094, + "duration": 1, + "pid": 28888, + "index": 20 + }, + { + "name": "Require(18) E:/self/2020/project/game-node-center/node_modules/egg/config/config.default.js", + "start": 1585300409095, + "end": 1585300409096, + "duration": 1, + "pid": 28888, + "index": 21 + }, + { + "name": "Require(19) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.default.js", + "start": 1585300409099, + "end": 1585300409100, + "duration": 1, + "pid": 28888, + "index": 22 + }, + { + "name": "Require(20) config/config.default.ts", + "start": 1585300409101, + "end": 1585300409101, + "duration": 0, + "pid": 28888, + "index": 23 + }, + { + "name": "Require(21) E:/self/2020/project/game-node-center/node_modules/egg-security/config/config.local.js", + "start": 1585300409103, + "end": 1585300409103, + "duration": 0, + "pid": 28888, + "index": 24 + }, + { + "name": "Require(22) E:/self/2020/project/game-node-center/node_modules/egg-watcher/config/config.local.js", + "start": 1585300409106, + "end": 1585300409106, + "duration": 0, + "pid": 28888, + "index": 25 + }, + { + "name": "Require(23) E:/self/2020/project/game-node-center/node_modules/egg-view/config/config.local.js", + "start": 1585300409111, + "end": 1585300409112, + "duration": 1, + "pid": 28888, + "index": 26 + }, + { + "name": "Require(24) E:/self/2020/project/game-node-center/node_modules/egg/config/config.local.js", + "start": 1585300409116, + "end": 1585300409116, + "duration": 0, + "pid": 28888, + "index": 27 + }, + { + "name": "Require(25) E:/self/2020/project/game-node-center/node_modules/midway-web/config/config.local.js", + "start": 1585300409117, + "end": 1585300409117, + "duration": 0, + "pid": 28888, + "index": 28 + }, + { + "name": "Require(26) config/config.local.ts", + "start": 1585300409117, + "end": 1585300409117, + "duration": 0, + "pid": 28888, + "index": 29 + }, + { + "name": "Load extend/application.js", + "start": 1585300409118, + "end": 1585300409299, + "duration": 181, + "pid": 28888, + "index": 30 + }, + { + "name": "Require(27) E:/self/2020/project/game-node-center/node_modules/egg-session/app/extend/application.js", + "start": 1585300409119, + "end": 1585300409120, + "duration": 1, + "pid": 28888, + "index": 31 + }, + { + "name": "Require(28) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/application.js", + "start": 1585300409121, + "end": 1585300409124, + "duration": 3, + "pid": 28888, + "index": 32 + }, + { + "name": "Require(29) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/application.js", + "start": 1585300409125, + "end": 1585300409128, + "duration": 3, + "pid": 28888, + "index": 33 + }, + { + "name": "Require(30) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app/extend/application.js", + "start": 1585300409133, + "end": 1585300409135, + "duration": 2, + "pid": 28888, + "index": 34 + }, + { + "name": "Require(31) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/application.js", + "start": 1585300409137, + "end": 1585300409141, + "duration": 4, + "pid": 28888, + "index": 35 + }, + { + "name": "Require(32) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app/extend/application.js", + "start": 1585300409144, + "end": 1585300409207, + "duration": 63, + "pid": 28888, + "index": 36 + }, + { + "name": "Require(33) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app/extend/application.js", + "start": 1585300409208, + "end": 1585300409285, + "duration": 77, + "pid": 28888, + "index": 37 + }, + { + "name": "Load extend/request.js", + "start": 1585300409300, + "end": 1585300409329, + "duration": 29, + "pid": 28888, + "index": 38 + }, + { + "name": "Require(34) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/request.js", + "start": 1585300409313, + "end": 1585300409315, + "duration": 2, + "pid": 28888, + "index": 39 + }, + { + "name": "Load extend/response.js", + "start": 1585300409329, + "end": 1585300409360, + "duration": 31, + "pid": 28888, + "index": 40 + }, + { + "name": "Require(35) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/response.js", + "start": 1585300409341, + "end": 1585300409343, + "duration": 2, + "pid": 28888, + "index": 41 + }, + { + "name": "Load extend/context.js", + "start": 1585300409360, + "end": 1585300409474, + "duration": 114, + "pid": 28888, + "index": 42 + }, + { + "name": "Require(36) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/context.js", + "start": 1585300409361, + "end": 1585300409380, + "duration": 19, + "pid": 28888, + "index": 43 + }, + { + "name": "Require(37) E:/self/2020/project/game-node-center/node_modules/egg-jsonp/app/extend/context.js", + "start": 1585300409381, + "end": 1585300409384, + "duration": 3, + "pid": 28888, + "index": 44 + }, + { + "name": "Require(38) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app/extend/context.js", + "start": 1585300409385, + "end": 1585300409386, + "duration": 1, + "pid": 28888, + "index": 45 + }, + { + "name": "Require(39) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app/extend/context.js", + "start": 1585300409388, + "end": 1585300409447, + "duration": 59, + "pid": 28888, + "index": 46 + }, + { + "name": "Require(40) E:/self/2020/project/game-node-center/node_modules/egg-view/app/extend/context.js", + "start": 1585300409449, + "end": 1585300409451, + "duration": 2, + "pid": 28888, + "index": 47 + }, + { + "name": "Require(41) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/context.js", + "start": 1585300409455, + "end": 1585300409456, + "duration": 1, + "pid": 28888, + "index": 48 + }, + { + "name": "Require(42) E:/self/2020/project/game-node-center/node_modules/midway-web/app/extend/context.js", + "start": 1585300409457, + "end": 1585300409458, + "duration": 1, + "pid": 28888, + "index": 49 + }, + { + "name": "Require(43) app/extend/context.ts", + "start": 1585300409459, + "end": 1585300409460, + "duration": 1, + "pid": 28888, + "index": 50 + }, + { + "name": "Load extend/helper.js", + "start": 1585300409474, + "end": 1585300409531, + "duration": 57, + "pid": 28888, + "index": 51 + }, + { + "name": "Require(44) E:/self/2020/project/game-node-center/node_modules/egg-security/app/extend/helper.js", + "start": 1585300409475, + "end": 1585300409503, + "duration": 28, + "pid": 28888, + "index": 52 + }, + { + "name": "Require(45) E:/self/2020/project/game-node-center/node_modules/egg/app/extend/helper.js", + "start": 1585300409513, + "end": 1585300409514, + "duration": 1, + "pid": 28888, + "index": 53 + }, + { + "name": "Require(46) app/extend/helper.ts", + "start": 1585300409516, + "end": 1585300409517, + "duration": 1, + "pid": 28888, + "index": 54 + }, + { + "name": "Load app.js", + "start": 1585300411975, + "end": 1585300412123, + "duration": 148, + "pid": 28888, + "index": 55 + }, + { + "name": "Require(47) E:/self/2020/project/game-node-center/node_modules/egg-session/app.js", + "start": 1585300411976, + "end": 1585300411977, + "duration": 1, + "pid": 28888, + "index": 56 + }, + { + "name": "Require(48) E:/self/2020/project/game-node-center/node_modules/egg-security/app.js", + "start": 1585300411977, + "end": 1585300411980, + "duration": 3, + "pid": 28888, + "index": 57 + }, + { + "name": "Require(49) E:/self/2020/project/game-node-center/node_modules/egg-onerror/app.js", + "start": 1585300411981, + "end": 1585300411995, + "duration": 14, + "pid": 28888, + "index": 58 + }, + { + "name": "Require(50) E:/self/2020/project/game-node-center/node_modules/egg-i18n/app.js", + "start": 1585300411996, + "end": 1585300412022, + "duration": 26, + "pid": 28888, + "index": 59 + }, + { + "name": "Require(51) E:/self/2020/project/game-node-center/node_modules/egg-watcher/app.js", + "start": 1585300412023, + "end": 1585300412027, + "duration": 4, + "pid": 28888, + "index": 60 + }, + { + "name": "Require(52) E:/self/2020/project/game-node-center/node_modules/egg-schedule/app.js", + "start": 1585300412029, + "end": 1585300412032, + "duration": 3, + "pid": 28888, + "index": 61 + }, + { + "name": "Require(53) E:/self/2020/project/game-node-center/node_modules/egg-multipart/app.js", + "start": 1585300412033, + "end": 1585300412038, + "duration": 5, + "pid": 28888, + "index": 62 + }, + { + "name": "Require(54) E:/self/2020/project/game-node-center/node_modules/egg-development/app.js", + "start": 1585300412038, + "end": 1585300412039, + "duration": 1, + "pid": 28888, + "index": 63 + }, + { + "name": "Require(55) E:/self/2020/project/game-node-center/node_modules/egg-logrotator/app.js", + "start": 1585300412039, + "end": 1585300412040, + "duration": 1, + "pid": 28888, + "index": 64 + }, + { + "name": "Require(56) E:/self/2020/project/game-node-center/node_modules/egg-static/app.js", + "start": 1585300412040, + "end": 1585300412041, + "duration": 1, + "pid": 28888, + "index": 65 + }, + { + "name": "Require(57) E:/self/2020/project/game-node-center/node_modules/midway-schedule/app.js", + "start": 1585300412042, + "end": 1585300412043, + "duration": 1, + "pid": 28888, + "index": 66 + }, + { + "name": "Require(58) E:/self/2020/project/game-node-center/node_modules/egg-cors/app.js", + "start": 1585300412044, + "end": 1585300412044, + "duration": 0, + "pid": 28888, + "index": 67 + }, + { + "name": "Require(59) E:/self/2020/project/game-node-center/node_modules/egg-redis/app.js", + "start": 1585300412045, + "end": 1585300412048, + "duration": 3, + "pid": 28888, + "index": 68 + }, + { + "name": "Require(60) E:/self/2020/project/game-node-center/node_modules/egg-socket.io/app.js", + "start": 1585300412048, + "end": 1585300412118, + "duration": 70, + "pid": 28888, + "index": 69 + }, + { + "name": "Require(61) E:/self/2020/project/game-node-center/node_modules/egg-jwt/app.js", + "start": 1585300412119, + "end": 1585300412119, + "duration": 0, + "pid": 28888, + "index": 70 + }, + { + "name": "Require(62) app.ts", + "start": 1585300412122, + "end": 1585300412122, + "duration": 0, + "pid": 28888, + "index": 71 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-watcher/lib/init.js:15:14", + "start": 1585300412132, + "end": 1585300412522, + "duration": 390, + "pid": 28888, + "index": 72 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-redis/lib/redis.js:53:7", + "start": 1585300412250, + "end": 1585300412515, + "duration": 265, + "pid": 28888, + "index": 73 + }, + { + "name": "Load Controller", + "start": 1585300412269, + "end": 1585300412452, + "duration": 183, + "pid": 28888, + "index": 74 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585300412269, + "end": 1585300412452, + "duration": 183, + "pid": 28888, + "index": 75 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-socket.io/lib/io.js:26:7", + "start": 1585300412290, + "end": 1585300412499, + "duration": 209, + "pid": 28888, + "index": 76 + }, + { + "name": "Before Start in app.ts:6:9", + "start": 1585300412293, + "end": 1585300412499, + "duration": 206, + "pid": 28888, + "index": 77 + }, + { + "name": "Load Service", + "start": 1585300412294, + "end": 1585300412308, + "duration": 14, + "pid": 28888, + "index": 78 + }, + { + "name": "Load \"service\" to Context", + "start": 1585300412294, + "end": 1585300412308, + "duration": 14, + "pid": 28888, + "index": 79 + }, + { + "name": "Load Middleware", + "start": 1585300412308, + "end": 1585300412452, + "duration": 144, + "pid": 28888, + "index": 80 + }, + { + "name": "Load \"middlewares\" to Application", + "start": 1585300412308, + "end": 1585300412441, + "duration": 133, + "pid": 28888, + "index": 81 + }, + { + "name": "Load Controller", + "start": 1585300412452, + "end": 1585300412454, + "duration": 2, + "pid": 28888, + "index": 82 + }, + { + "name": "Load \"controller\" to Application", + "start": 1585300412452, + "end": 1585300412454, + "duration": 2, + "pid": 28888, + "index": 83 + }, + { + "name": "Load Router", + "start": 1585300412454, + "end": 1585300412455, + "duration": 1, + "pid": 28888, + "index": 84 + }, + { + "name": "Require(63) app/router.ts", + "start": 1585300412455, + "end": 1585300412455, + "duration": 0, + "pid": 28888, + "index": 85 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/midway-web/dist/loader/loader.js:28:18", + "start": 1585300412455, + "end": 1585300412503, + "duration": 48, + "pid": 28888, + "index": 86 + }, + { + "name": "Before Start in E:/self/2020/project/game-node-center/node_modules/egg-core/lib/egg.js:303:10", + "start": 1585300412461, + "end": 1585300412499, + "duration": 38, + "pid": 28888, + "index": 87 + } +] \ No newline at end of file diff --git a/run/router.json b/run/router.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/run/router.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/src/app.ts b/src/app.ts old mode 100755 new mode 100644 index 4889461..a02861b --- a/src/app.ts +++ b/src/app.ts @@ -1,15 +1,31 @@ -import { Application } from 'egg'; +import {Application} from 'egg'; import * as path from 'path'; import ElkTransport from './app/helper/logTransport'; export default (app: Application) => { - app.beforeStart(async () => {}); - app.logger.set('remoteInfo', new ElkTransport({ - level: 'INFO', - file: path.join(app.baseDir, '../logs/ELKLog/info.log'), - })); - app.logger.set('remoteError', new ElkTransport({ - level: 'ERROR', - file: path.join(app.baseDir, '../logs/ELKLog/error.log'), - })); + app.beforeStart(async () => { + }); + app.use(async function (ctx, next) { + try { + await next(); + } catch (err) { + if (err.name === "UnauthorizedError") { + ctx.status = 401; + ctx.body = { + code: '999999', + data: {}, + message: 'invalid token...', + }; + ctx.logger.error('invalid token...', err) + } + } + }); + app.logger.set('remoteInfo', new ElkTransport({ + level: 'INFO', + file: path.join(app.baseDir, '../logs/ELKLog/info.log'), + })); + app.logger.set('remoteError', new ElkTransport({ + level: 'ERROR', + file: path.join(app.baseDir, '../logs/ELKLog/error.log'), + })); }; diff --git a/src/app/controller/account.ts b/src/app/controller/account.ts old mode 100755 new mode 100644 index eee2848..cbacde2 --- a/src/app/controller/account.ts +++ b/src/app/controller/account.ts @@ -13,10 +13,13 @@ export class Account extends BaseController { @post('/login') async login() { try { - const accountInfo: IAccountInfo = {userAccount: 'cai', password: '123'}; + const { body } = this.getRequestBody(); + const { userAccount, password } = body; + const accountInfo: IAccountInfo = {userAccount, password}; const result = await this.service.login(accountInfo); this.success(result) } catch (e) { + this.ctx.logger.error('login-----:', e); this.fail(e) } } diff --git a/src/app/controller/user.ts b/src/app/controller/user.ts new file mode 100644 index 0000000..153b1ba --- /dev/null +++ b/src/app/controller/user.ts @@ -0,0 +1,24 @@ +import { Context, inject, controller, post, provide } from 'midway'; +import BaseController from '../../lib/baseController'; + +@provide() +@controller('/node/user') +export class UserController extends BaseController { + + @inject() + ctx: Context; + /** + * 处理ocr数据转发 + */ + @post('/') + async index() { + try { + const { body } = this.getRequestBody(); + const token: string = this.ctx.get('Authorization') || ''; + console.log(token, body, this.ctx.state) + this.success({ username: 'cai'}) + } catch (e) { + console.log(e) + } + } +} diff --git a/src/app/extend/context.ts b/src/app/extend/context.ts old mode 100755 new mode 100644 diff --git a/src/app/extend/helper.ts b/src/app/extend/helper.ts new file mode 100644 index 0000000..199f6e7 --- /dev/null +++ b/src/app/extend/helper.ts @@ -0,0 +1,15 @@ +module.exports = { + parseMsg(action: any, payload = {}, metadata = {}) { + const meta = Object.assign({}, { + timestamp: Date.now(), + }, metadata); + + return { + meta, + data: { + action, + payload, + }, + }; + }, +}; diff --git a/src/app/helper/logTransport.ts b/src/app/helper/logTransport.ts old mode 100755 new mode 100644 index 33b505e..7bf6f9e --- a/src/app/helper/logTransport.ts +++ b/src/app/helper/logTransport.ts @@ -3,7 +3,7 @@ import { FileBufferTransport } from 'egg-logger'; import * as iconv from 'iconv-lite'; import * as moment from 'moment'; import * as os from 'os'; -import { OSLogField, BusinessLogField } from '../../interface/logInterface'; +import { OSLogField, BusinessLogField } from '../../interface/Ilog'; const { uid, username } = os.userInfo(); @@ -35,10 +35,11 @@ class LogFormat extends Map { /** * 格式化Log上下文 - * @param collect 日志对象 + * @param logInfo * @param level 日志级别 */ - public formatFetchInfoMsg(collect: any, level: LoggerLevel) { + public formatFetchInfoMsg(logInfo: Array, level: LoggerLevel) { + const collect = logInfo[0]; this.logField = { fetchConsumeTime: 0, level: '', @@ -52,18 +53,25 @@ class LogFormat extends Map { method: '', url: '', }; - this.logField.timestamp = collect.startTime; - this.logField.requestTime = moment(collect.startTime).format('YYYY-MM-DD HH:mm:ss'); - this.logField.status = collect.status; - this.logField.message = collect.message; - this.logField.stack = collect.stack; - this.logField.level = collect.level || level; - this.logField.url = collect.url; - this.logField.total = collect.end - collect.start; - if (collect.fetchStart && collect.fetchEnd) { - this.logField.requestBody = collect.requestBody; - this.logField.method = collect.method; - this.logField.fetchConsumeTime = collect.fetchEnd - collect.fetchStart; + if (typeof collect === 'string') { + this.logField.message = collect; + this.logField.requestTime = moment(Date.now()).format('YYYY-MM-DD HH:mm:ss'); + this.logField.level = level; + this.logField.stack = level === 'ERROR' ? logInfo[1] : '' + } else { + this.logField.timestamp = collect.startTime; + this.logField.requestTime = moment(collect.startTime).format('YYYY-MM-DD HH:mm:ss'); + this.logField.status = collect.status; + this.logField.message = collect.message; + this.logField.stack = collect.stack; + this.logField.level = collect.level || level; + this.logField.url = collect.url; + this.logField.total = collect.end - collect.start; + if (collect.fetchStart && collect.fetchEnd) { + this.logField.requestBody = collect.requestBody; + this.logField.method = collect.method; + this.logField.fetchConsumeTime = collect.fetchEnd - collect.fetchStart; + } } return this.toBuffer(); } @@ -73,18 +81,13 @@ export default class ElkTransport extends FileBufferTransport { log(this: Context, level: LoggerLevel, args: any) { const logFormat = new LogFormat(); - const logInfo = args[0]; let buf; if (!this._stream) { const err = new Error(`${this.options.file} log stream had been closed`); console.error(err.stack); return; } - if (typeof logInfo === 'string') { - buf = logFormat.formatFetchInfoMsg({ message: logInfo }, level); - } else { - buf = logFormat.formatFetchInfoMsg(logInfo, level); - } + buf = logFormat.formatFetchInfoMsg(args, level); if (buf.length) { this._write(buf); } diff --git a/src/app/helper/parseMsg.ts b/src/app/helper/parseMsg.ts new file mode 100644 index 0000000..199f6e7 --- /dev/null +++ b/src/app/helper/parseMsg.ts @@ -0,0 +1,15 @@ +module.exports = { + parseMsg(action: any, payload = {}, metadata = {}) { + const meta = Object.assign({}, { + timestamp: Date.now(), + }, metadata); + + return { + meta, + data: { + action, + payload, + }, + }; + }, +}; diff --git a/src/app/io/controller/nsp.ts b/src/app/io/controller/nsp.ts new file mode 100644 index 0000000..010e642 --- /dev/null +++ b/src/app/io/controller/nsp.ts @@ -0,0 +1,33 @@ +'use strict'; + +import { Controller } from 'egg'; + +class NspController extends Controller { + async exchange() { + const { ctx } = this; + const socket = ctx.socket as any; + const app = ctx.app as any; + const nsp = app.io.of('/socket'); + const message = ctx.args[0] || {}; + const { room } = socket.handshake.query; + const rooms = [room]; + try { + const { payload } = message; + console.log('rooms', rooms) + nsp.adapter.clients(rooms, (err: any, clients: any) => { + console.log('clients-------exchange', clients); + // 广播信息 + nsp.to(room).emit('online', { + clients, + action: 'broadcast', + target: 'participator', + message: payload, + }); + }); + } catch (error) { + app.logger.error(error); + } + } +} + +module.exports = NspController; diff --git a/src/app/io/middleware/auth.ts b/src/app/io/middleware/auth.ts new file mode 100644 index 0000000..d15f8aa --- /dev/null +++ b/src/app/io/middleware/auth.ts @@ -0,0 +1,87 @@ +import {Context} from "midway"; + +const PREFIX = 'room'; +export default function auth(): any{ + return async (ctx: Context, next: () => Promise) => { + const { logger, helper } = ctx; + const socket = ctx.socket as any; + const app = ctx.app as any; + const id = socket.id; + const nsp = app.io.of('/socket'); + const query = socket.handshake.query; + // 用户信息 + const { room, userId } = query; + const rooms = [ room ]; + + console.log('#user_info', id, room, userId); + const tick = (id: string, msg: object) => { + console.log('#tick', id, msg); + + // 踢出用户前发送消息 + socket.emit(id, helper.parseMsg('deny', msg)); + + // 调用 adapter 方法踢出用户,客户端触发 disconnect 事件 + nsp.adapter.remoteDisconnect(id, true, (err: any) => { + logger.error(err); + }); + }; + + // 检查房间是否存在,不存在则踢出用户 + // 备注:此处 app.redis 与插件无关,可用其他存储代替 + const hasRoom = await app.redis.get(`${PREFIX}:${room}`); + + console.log('#has_exist', hasRoom); + + if (!hasRoom) { + tick(id, { + type: 'deleted', + message: 'deleted, room has been deleted.', + }); + return; + } + + // 用户加入 + console.log('#join', room); + socket.join(room); + + // 在线列表 + nsp.adapter.clients(rooms, (err: any, clients: any) => { + console.log('#online_join', clients); + + // 更新在线用户列表 + nsp.to(room).emit('online', { + clients, + action: 'join', + target: 'participator', + message: `User(${id}) joined.`, + }); + }); + + await next(); + + // 用户离开 + console.log('#leave', room); + + // 在线列表 + nsp.adapter.clients(rooms, (err: any, clients: any) => { + console.log('#online_leave', clients); + + // 获取 client 信息 + // const clientsDetail = {}; + // clients.forEach(client => { + // const _client = app.io.sockets.sockets[client]; + // const _query = _client.handshake.query; + // clientsDetail[client] = _query; + // }); + + // 更新在线用户列表 + nsp.to(room).emit('online', { + clients, + action: 'leave', + target: 'participator', + message: `User(${id}) leaved.`, + }); + }); + + }; +} diff --git a/src/app/middleware/elkLogger.ts b/src/app/middleware/elkLogger.ts old mode 100755 new mode 100644 index 9e8f016..010bc57 --- a/src/app/middleware/elkLogger.ts +++ b/src/app/middleware/elkLogger.ts @@ -9,6 +9,7 @@ import { Context, EggAppConfig } from 'egg'; export default function elkLogger(options: EggAppConfig['elkLogger']): any { return async (ctx: Context, next: () => Promise) => { const { match, enable } = options; + console.log('jwt', ctx.jwt) // 是否符合配置规则 if (match(ctx) && enable) { ctx.setLogCollection('fetchStart', Date.now()); diff --git a/src/app/middleware/notFound.ts b/src/app/middleware/notFound.ts old mode 100755 new mode 100644 diff --git a/src/app/public/README.md b/src/app/public/README.md old mode 100755 new mode 100644 diff --git a/src/app/router.ts b/src/app/router.ts new file mode 100644 index 0000000..ef3e800 --- /dev/null +++ b/src/app/router.ts @@ -0,0 +1,5 @@ +import { Application } from 'midway' + +export default function (app: Application) { + app.io.of('/socket').route('exchange', app.io.controller.nsp.exchange); +} diff --git a/src/config/config.default.ts b/src/config/config.default.ts old mode 100755 new mode 100644 index c3ee5d2..20b87cf --- a/src/config/config.default.ts +++ b/src/config/config.default.ts @@ -39,8 +39,8 @@ export default (appInfo: EggAppInfo) => { credentials: true, origin(ctx: Context) { const origin: string = ctx.get('origin'); - // 允许*域名访问 - if (origin.indexOf('127.0.0.1') > -1) { + // 允许*.ssjlicai.com域名访问 + if (origin.indexOf('172.22.88.118') > -1) { console.log('come in'); return origin; } else { @@ -58,11 +58,39 @@ export default (appInfo: EggAppInfo) => { errorLogName: 'error.log', }; - // redis + // 业务接口domain + config.apiDomain = { + loanDomain: '*', + }; + + // jsonwebtoken 插件配置 + config.jwt = { + secret: "123456", + enable: true, + match(ctx: Context) { + const reg = /login/; + return !reg.test(ctx.originalUrl); + }, + }; + + // socket io setting + config.io = { + namespace: { + '/socket': { + connectionMiddleware: ['auth'], + packetMiddleware: [], + } + }, + redis: { + host: '127.0.0.1', + port: 6379, + }, + }; + config.redis = { client: { - port: 6379, // Redis port - host: '127.0.0.1', // Redis host + port: 6379, + host: '127.0.0.1', password: '123456', db: 0, }, diff --git a/src/config/config.local.ts b/src/config/config.local.ts old mode 100755 new mode 100644 diff --git a/src/config/config.prod.ts b/src/config/config.prod.ts old mode 100755 new mode 100644 diff --git a/src/config/config.test.ts b/src/config/config.test.ts old mode 100755 new mode 100644 diff --git a/src/config/plugin.ts b/src/config/plugin.ts old mode 100755 new mode 100644 index f29ec26..a2375f1 --- a/src/config/plugin.ts +++ b/src/config/plugin.ts @@ -9,6 +9,14 @@ const plugin: EggPlugin = { redis: { enable: true, package: 'egg-redis', + }, + io: { + enable: true, + package: 'egg-socket.io', + }, + jwt:{ + enable: true, + package: "egg-jwt", } }; diff --git a/src/interface/IAccountInfo.ts b/src/interface/IAccountInfo.ts old mode 100755 new mode 100644 diff --git a/src/interface/IAccountService.ts b/src/interface/IAccountService.ts old mode 100755 new mode 100644 index fc811e1..1011d26 --- a/src/interface/IAccountService.ts +++ b/src/interface/IAccountService.ts @@ -3,5 +3,5 @@ import {ILoginResult} from "./ILoginResult"; export interface IAccountService { login(accountInfo: IAccountInfo): Promise; - authUser(userInfo: IAccountInfo): boolean; + authUser(userInfo: IAccountInfo): Promise; } diff --git a/src/interface/IFetchOptions.ts b/src/interface/IFetchOptions.ts old mode 100755 new mode 100644 diff --git a/src/interface/ILoginResult.ts b/src/interface/ILoginResult.ts old mode 100755 new mode 100644 diff --git a/src/interface/IRequestBody.ts b/src/interface/IRequestBody.ts old mode 100755 new mode 100644 diff --git a/src/interface/IResult.ts b/src/interface/IResult.ts old mode 100755 new mode 100644 diff --git a/src/interface/Ilog.ts b/src/interface/Ilog.ts new file mode 100644 index 0000000..7f5b2e8 --- /dev/null +++ b/src/interface/Ilog.ts @@ -0,0 +1,75 @@ +/** + * 系统日志属性 + */ +export interface OSLogField { + /** + * 进程识别号 + */ + pid: number; + /** + * node 版本号 + */ + nodeVersion: string; + /** + * 启动时间 + */ + launchTime: string; + /** + * 系统用户名 + */ + osUser: string; + /** + * 系统用户id + */ + osUid: number; +} + +/** + * 业务日志属性 + */ +export interface BusinessLogField { + /** + * 日志时间戳 + */ + timestamp: string; + /** + * 请求时间戳 + */ + requestTime: string; + /** + * 请求总数 + */ + total: number; + /** + * 请求url + */ + url: string; + /** + * 请求状态码 + */ + status: string; + /** + * 请求消耗时间 + */ + fetchConsumeTime: number; + /** + * 请求描述 + */ + message: string; + /** + * 日志级别 + */ + level: string; + /** + * 请求错误栈 + */ + stack: string; + /** + * 请求信息 + */ + requestBody?: any; + /** + * 请求类型 + */ + method: string; +} diff --git a/src/lib/baseController.ts b/src/lib/baseController.ts old mode 100755 new mode 100644 index 805dd68..2b5a77b --- a/src/lib/baseController.ts +++ b/src/lib/baseController.ts @@ -26,7 +26,7 @@ export default class BaseController { const result: IResult = { code: ResultCode.SUCCESS, data: data, - message: '' + message: 'successful' } this.ctx.body = result } diff --git a/src/lib/baseService.ts b/src/lib/baseService.ts old mode 100755 new mode 100644 index 827e149..a4dac2a --- a/src/lib/baseService.ts +++ b/src/lib/baseService.ts @@ -7,7 +7,7 @@ export default class BaseService { protected ctx: Context; @config('apiDomain') - protected config: any; + protected apiDomainConfig: any; /** * 处理请求 @@ -24,7 +24,7 @@ export default class BaseService { const headers = { Authorization: `Bearer ${option.ssjToken}`, }; - const ajaxUrl = this.config.loanDomain + option.url; + const ajaxUrl = this.apiDomainConfig.loanDomain + option.url; // 发起服务请求 const result = await this.ctx.curl(ajaxUrl, { data, diff --git a/src/service/account.ts b/src/service/account.ts old mode 100755 new mode 100644 index c866c9a..28175bd --- a/src/service/account.ts +++ b/src/service/account.ts @@ -1,68 +1,50 @@ import BaseService from '../lib/baseService'; -import {Context, inject, provide, Application} from "midway"; +import {Context, inject, provide, plugin, config} from "midway"; import {IAccountInfo} from "../interface/IAccountInfo"; import {IAccountService} from "../interface/IAccountService"; -import { sign } from 'jsonwebtoken'; import {ILoginResult} from "../interface/ILoginResult"; @provide('AccountService') -export class AccountService extends BaseService implements IAccountService{ - - @inject() - app: Application; +export class AccountService extends BaseService implements IAccountService { @inject() ctx: Context; - salt: 'test123'; + @plugin() + jwt: any; + + @config('jwt') + protected jwtConfig: any; public login(accountInfo: IAccountInfo): Promise { - return new Promise( async (resolve,reject) => { + return new Promise(async (resolve, reject) => { try { - // 校验是否登录 - let token = await this.isLogin(accountInfo); - if(!token) { - // 校验用户信息 - const isAuth = await this.authUser(accountInfo) - if(isAuth){ - token = await this.setToken(accountInfo) - } else { - token = '' - } + let token = ''; + // 校验用户信息 + const isAuth = await this.authUser(accountInfo); + if (isAuth) { + token = await this.getToken(accountInfo.userAccount) } - const result:ILoginResult = { token } + const result: ILoginResult = {token}; resolve(result) } catch (e) { - reject('auth error'); + this.ctx.logger.error('login service error:', e); + reject(e); } }) } - private async isLogin(accountInfo: IAccountInfo): Promise { - try { - const token: string = await this.getToken(accountInfo.userAccount) - return token - } catch (e) { - throw 'isLogin error' - } - } - public async authUser(accountInfo: IAccountInfo) { - return accountInfo.userAccount === 'cai' && accountInfo.password === '123' - } - private async setToken(accountInfo: IAccountInfo) { - try { - let token = sign({userName: accountInfo.userAccount}, this.salt); - await this.app.redis.set(accountInfo.userAccount, token) - return token - } catch (e) { - throw `redis error: ${e.msg}` + let valid = accountInfo.userAccount === 'cai' && accountInfo.password === '123'; + if (!valid) { + throw 'incorrect user account or password.' } + return accountInfo.userAccount === 'cai' && accountInfo.password === '123'; } private getToken(userAccount: string) { - let token = this.app.redis.get(userAccount); - console.log('token', token) - return token + const token = this.jwt.sign({userName: userAccount}, this.jwtConfig.secret, { expiresIn: 60 * 60 }); + this.ctx.logger.info(`AccountService getToken token--${token}`); + return token; } } diff --git a/test/app/controller/home.test.ts b/test/app/controller/home.test.ts old mode 100755 new mode 100644 diff --git a/tsconfig.json b/tsconfig.json old mode 100755 new mode 100644 diff --git a/tslint.json b/tslint.json old mode 100755 new mode 100644 diff --git a/yarn.lock b/yarn.lock old mode 100755 new mode 100644 index a748e39..6a947f5 --- a/yarn.lock +++ b/yarn.lock @@ -509,6 +509,13 @@ "@types/glob" "*" "@types/node" "*" +"@types/socket.io@^2.1.4": + version "2.1.4" + resolved "https://registry.npmjs.org/@types/socket.io/-/socket.io-2.1.4.tgz#674e7bc193c5ccdadd4433f79f3660d31759e9ac" + integrity sha512-cI98INy7tYnweTsUlp8ocveVdAxENUThO0JsLSCs51cjOP2yV5Mqo5QszMDPckyRRA+PO6+wBgKvGvHUCc23TQ== + dependencies: + "@types/node" "*" + "@types/stack-utils@^1.0.1": version "1.0.1" resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" @@ -556,7 +563,7 @@ a-sync-waterfall@^1.0.0: resolved "https://registry.npm.taobao.org/a-sync-waterfall/download/a-sync-waterfall-1.0.1.tgz#75b6b6aa72598b497a125e7a2770f14f4c8a1fa7" integrity sha1-dba2qnJZi0l6El56J3DxT0yKH6c= -accepts@^1.3.5: +accepts@^1.3.5, accepts@~1.3.4: version "1.3.7" resolved "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" integrity sha1-UxvHJlF6OytB+FACHGzBXqq1B80= @@ -579,6 +586,11 @@ address@>=0.0.1, address@^1.0.1: resolved "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" integrity sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY= +after@0.8.2: + version "0.8.2" + resolved "https://registry.npm.taobao.org/after/download/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" + integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= + agent-base@4, agent-base@^4.2.0, agent-base@^4.3.0: version "4.3.0" resolved "https://registry.npm.taobao.org/agent-base/download/agent-base-4.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fagent-base%2Fdownload%2Fagent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" @@ -733,6 +745,11 @@ array-unique@^0.3.2: resolved "https://registry.npm.taobao.org/array-unique/download/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= +arraybuffer.slice@~0.0.7: + version "0.0.7" + resolved "https://registry.npm.taobao.org/arraybuffer.slice/download/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" + integrity sha1-O7xCdd1YTMGxCAm4nU6LY6aednU= + arrify@^1.0.0, arrify@^1.0.1: version "1.0.1" resolved "https://registry.npm.taobao.org/arrify/download/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" @@ -758,6 +775,16 @@ async-each@^1.0.1: resolved "https://registry.npm.taobao.org/async-each/download/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" integrity sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8= +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.npm.taobao.org/async-limiter/download/async-limiter-1.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fasync-limiter%2Fdownload%2Fasync-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha1-3TeelPDbgxCwgpH51kwyCXZmF/0= + +async@^1.5.0: + version "1.5.2" + resolved "https://registry.npm.taobao.org/async/download/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= + asynckit@^0.4.0: version "0.4.0" resolved "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -1574,16 +1601,31 @@ babylon@^6.18.0: resolved "https://registry.npm.taobao.org/babylon/download/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" integrity sha1-ry87iPpvXB5MY00aD46sT1WzleM= +backo2@1.0.2: + version "1.0.2" + resolved "https://registry.npm.taobao.org/backo2/download/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" + integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= + balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= +base64-arraybuffer@0.1.5: + version "0.1.5" + resolved "https://registry.npm.taobao.org/base64-arraybuffer/download/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" + integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= + base64-js@^1.0.2: version "1.3.1" resolved "https://registry.npm.taobao.org/base64-js/download/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" integrity sha1-WOzoy3XdB+ce0IxzarxfrE2/jfE= +base64id@2.0.0: + version "2.0.0" + resolved "https://registry.npm.taobao.org/base64id/download/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6" + integrity sha1-J3Csa8R9MSr5eov5pjQ0LgzSXLY= + base@^0.11.1: version "0.11.2" resolved "https://registry.npm.taobao.org/base/download/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" @@ -1597,6 +1639,13 @@ base@^0.11.1: mixin-deep "^1.2.0" pascalcase "^0.1.1" +better-assert@~1.0.0: + version "1.0.2" + resolved "https://registry.npm.taobao.org/better-assert/download/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" + integrity sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI= + dependencies: + callsite "1.0.0" + binary-extensions@^1.0.0: version "1.13.1" resolved "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" @@ -1614,6 +1663,11 @@ black-hole-stream@~0.0.1: resolved "https://registry.npm.taobao.org/black-hole-stream/download/black-hole-stream-0.0.1.tgz#33b7a06b9f1e7453d6041b82974481d2152aea42" integrity sha1-M7ega58edFPWBBuCl0SB0hUq6kI= +blob@0.0.5: + version "0.0.5" + resolved "https://registry.npm.taobao.org/blob/download/blob-0.0.5.tgz?cache=0&sync_timestamp=1580722883513&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fblob%2Fdownload%2Fblob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" + integrity sha1-1oDu7yX4zZGtUz9bAe7UjmTK9oM= + brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -1665,6 +1719,11 @@ bser@2.1.1: dependencies: node-int64 "^0.4.0" +buffer-equal-constant-time@1.0.1: + version "1.0.1" + resolved "https://registry.npm.taobao.org/buffer-equal-constant-time/download/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= + buffer-from@^1.0.0, buffer-from@^1.1.0: version "1.1.1" resolved "https://registry.npm.taobao.org/buffer-from/download/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" @@ -1768,6 +1827,11 @@ call-signature@0.0.2: resolved "https://registry.npm.taobao.org/call-signature/download/call-signature-0.0.2.tgz#a84abc825a55ef4cb2b028bd74e205a65b9a4996" integrity sha1-qEq8glpV70yysCi9dOIFpluaSZY= +callsite@1.0.0: + version "1.0.0" + resolved "https://registry.npm.taobao.org/callsite/download/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" + integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA= + callsites@^3.0.0: version "3.1.0" resolved "https://registry.npm.taobao.org/callsites/download/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -2064,11 +2128,26 @@ commondir@^1.0.1: resolved "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= +component-bind@1.0.0: + version "1.0.0" + resolved "https://registry.npm.taobao.org/component-bind/download/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" + integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= + +component-emitter@1.2.1: + version "1.2.1" + resolved "https://registry.npm.taobao.org/component-emitter/download/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= + component-emitter@^1.2.0, component-emitter@^1.2.1: version "1.3.0" resolved "https://registry.npm.taobao.org/component-emitter/download/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" integrity sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A= +component-inherit@0.0.3: + version "0.0.3" + resolved "https://registry.npm.taobao.org/component-inherit/download/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" + integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= + compressible@^2.0.6: version "2.0.17" resolved "https://registry.npm.taobao.org/compressible/download/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" @@ -2108,7 +2187,7 @@ convert-source-map@^1.1.0, convert-source-map@^1.1.1, convert-source-map@^1.4.0, dependencies: safe-buffer "~5.1.1" -cookie@^0.3.1: +cookie@0.3.1, cookie@^0.3.1: version "0.3.1" resolved "https://registry.npm.taobao.org/cookie/download/cookie-0.3.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcookie%2Fdownload%2Fcookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= @@ -2238,7 +2317,7 @@ debounce@^1.1.0: resolved "https://registry.npm.taobao.org/debounce/download/debounce-1.2.0.tgz#44a540abc0ea9943018dc0eaa95cce87f65cd131" integrity sha1-RKVAq8DqmUMBjcDqqVzOh/Zc0TE= -debug@2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.1, debug@^2.6.3, debug@^2.6.8, debug@^2.6.9: +debug@2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.1, debug@^2.6.3, debug@^2.6.8, debug@^2.6.9, debug@~2.6.8: version "2.6.9" resolved "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8= @@ -2259,7 +2338,7 @@ debug@3.2.6, debug@^3.0.1, debug@^3.1.0, debug@^3.2.6: dependencies: ms "^2.1.1" -debug@4, debug@^4.1.0, debug@^4.1.1: +debug@4, debug@^4.1.0, debug@^4.1.1, debug@~4.1.0: version "4.1.1" resolved "https://registry.npm.taobao.org/debug/download/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" integrity sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E= @@ -2469,6 +2548,11 @@ dot-prop@^4.2.0: dependencies: is-obj "^1.0.0" +double-ended-queue@^2.1.0-0: + version "2.1.0-0" + resolved "https://registry.npm.taobao.org/double-ended-queue/download/double-ended-queue-2.1.0-0.tgz#103d3527fd31528f40188130c841efdd78264e5c" + integrity sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw= + duplexer@~0.1.1: version "0.1.1" resolved "https://registry.npm.taobao.org/duplexer/download/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" @@ -2489,6 +2573,13 @@ eastasianwidth@^0.2.0: resolved "https://registry.npm.taobao.org/eastasianwidth/download/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha1-aWzi7Aqg5uqTo5f/zySqeEDIJ8s= +ecdsa-sig-formatter@1.0.11: + version "1.0.11" + resolved "https://registry.npm.taobao.org/ecdsa-sig-formatter/download/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" + integrity sha1-rg8PothQRe8UqBfao86azQSJ5b8= + dependencies: + safe-buffer "^5.0.1" + ee-first@1.1.1, ee-first@^1.1.1, ee-first@~1.1.1: version "1.1.1" resolved "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" @@ -2618,6 +2709,14 @@ egg-jsonp@^2.0.0: is-type-of "^1.2.0" jsonp-body "^1.0.0" +egg-jwt@^3.1.7: + version "3.1.7" + resolved "https://registry.npm.taobao.org/egg-jwt/download/egg-jwt-3.1.7.tgz#4db8d430291a2947bfdbc4bdabc585c7586a08b4" + integrity sha1-TbjUMCkaKUe/28S9q8WFx1hqCLQ= + dependencies: + jsonwebtoken "^8.3.0" + koa-jwt2 "^1.0.3" + egg-logger@^2.3.2, egg-logger@^2.4.1: version "2.4.1" resolved "https://registry.npm.taobao.org/egg-logger/download/egg-logger-2.4.1.tgz#58fd327bc60d97e384297360b809b40f4d447d55" @@ -2763,6 +2862,18 @@ egg-session@^3.1.0: dependencies: koa-session "^5.7.0" +egg-socket.io@^4.1.6: + version "4.1.6" + resolved "https://registry.npm.taobao.org/egg-socket.io/download/egg-socket.io-4.1.6.tgz#c6d99c6d14ff03704a4f95a51c075f40c5c4621a" + integrity sha1-xtmcbRT/A3BKT5WlHAdfQMXEYho= + dependencies: + debug "^4.1.0" + delegates "^1.0.0" + is-type-of "^1.2.1" + koa-compose "^4.1.0" + socket.io "^2.1.1" + socket.io-redis "^5.2.0" + egg-static@^2.2.0: version "2.2.0" resolved "https://registry.npm.taobao.org/egg-static/download/egg-static-2.2.0.tgz#cc707295637191d09a6c7e070cbeb2f6510c6a47" @@ -2909,6 +3020,46 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: dependencies: once "^1.4.0" +engine.io-client@~3.4.0: + version "3.4.0" + resolved "https://registry.npm.taobao.org/engine.io-client/download/engine.io-client-3.4.0.tgz?cache=0&sync_timestamp=1581492836966&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fengine.io-client%2Fdownload%2Fengine.io-client-3.4.0.tgz#82a642b42862a9b3f7a188f41776b2deab643700" + integrity sha1-gqZCtChiqbP3oYj0F3ay3qtkNwA= + dependencies: + component-emitter "1.2.1" + component-inherit "0.0.3" + debug "~4.1.0" + engine.io-parser "~2.2.0" + has-cors "1.1.0" + indexof "0.0.1" + parseqs "0.0.5" + parseuri "0.0.5" + ws "~6.1.0" + xmlhttprequest-ssl "~1.5.4" + yeast "0.1.2" + +engine.io-parser@~2.2.0: + version "2.2.0" + resolved "https://registry.npm.taobao.org/engine.io-parser/download/engine.io-parser-2.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fengine.io-parser%2Fdownload%2Fengine.io-parser-2.2.0.tgz#312c4894f57d52a02b420868da7b5c1c84af80ed" + integrity sha1-MSxIlPV9UqArQgho2ntcHISvgO0= + dependencies: + after "0.8.2" + arraybuffer.slice "~0.0.7" + base64-arraybuffer "0.1.5" + blob "0.0.5" + has-binary2 "~1.0.2" + +engine.io@~3.4.0: + version "3.4.0" + resolved "https://registry.npm.taobao.org/engine.io/download/engine.io-3.4.0.tgz#3a962cc4535928c252759a00f98519cb46c53ff3" + integrity sha1-OpYsxFNZKMJSdZoA+YUZy0bFP/M= + dependencies: + accepts "~1.3.4" + base64id "2.0.0" + cookie "0.3.1" + debug "~4.1.0" + engine.io-parser "~2.2.0" + ws "^7.1.2" + enquirer@^2.3.0: version "2.3.2" resolved "https://registry.npm.taobao.org/enquirer/download/enquirer-2.3.2.tgz#1c30284907cadff5ed2404bd8396036dd3da070e" @@ -3677,6 +3828,18 @@ has-ansi@^2.0.0: dependencies: ansi-regex "^2.0.0" +has-binary2@~1.0.2: + version "1.0.3" + resolved "https://registry.npm.taobao.org/has-binary2/download/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" + integrity sha1-d3asYn8+p3JQz8My2rfd9eT10R0= + dependencies: + isarray "2.0.1" + +has-cors@1.1.0: + version "1.1.0" + resolved "https://registry.npm.taobao.org/has-cors/download/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" + integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= + has-flag@^3.0.0: version "3.0.0" resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -4212,6 +4375,11 @@ isarray@1.0.0, isarray@~1.0.0: resolved "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz?cache=0&sync_timestamp=1562592096220&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fisarray%2Fdownload%2Fisarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= +isarray@2.0.1: + version "2.0.1" + resolved "https://registry.npm.taobao.org/isarray/download/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" + integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= + isexe@^2.0.0: version "2.0.0" resolved "https://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fisexe%2Fdownload%2Fisexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" @@ -4449,6 +4617,39 @@ jsonp-body@^1.0.0: resolved "https://registry.npm.taobao.org/jsonp-body/download/jsonp-body-1.0.0.tgz#e610fb6fcea79cf0cc9f27baa7b56377d4b0bb36" integrity sha1-5hD7b86nnPDMnye6p7Vjd9SwuzY= +jsonwebtoken@^8.1.0, jsonwebtoken@^8.3.0: + version "8.5.1" + resolved "https://registry.npm.taobao.org/jsonwebtoken/download/jsonwebtoken-8.5.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonwebtoken%2Fdownload%2Fjsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d" + integrity sha1-AOceC431TCEhofJhN98igGc7zA0= + dependencies: + jws "^3.2.2" + lodash.includes "^4.3.0" + lodash.isboolean "^3.0.3" + lodash.isinteger "^4.0.4" + lodash.isnumber "^3.0.3" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.once "^4.0.0" + ms "^2.1.1" + semver "^5.6.0" + +jwa@^1.4.1: + version "1.4.1" + resolved "https://registry.npm.taobao.org/jwa/download/jwa-1.4.1.tgz?cache=0&sync_timestamp=1576559513702&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjwa%2Fdownload%2Fjwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a" + integrity sha1-dDwymFy56YZVUw1TZBtmyGRbA5o= + dependencies: + buffer-equal-constant-time "1.0.1" + ecdsa-sig-formatter "1.0.11" + safe-buffer "^5.0.1" + +jws@^3.2.2: + version "3.2.2" + resolved "https://registry.npm.taobao.org/jws/download/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304" + integrity sha1-ABCZ82OUaMlBQADpmZX6UvtHgwQ= + dependencies: + jwa "^1.4.1" + safe-buffer "^5.0.1" + keygrip@~1.1.0: version "1.1.0" resolved "https://registry.npm.taobao.org/keygrip/download/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226" @@ -4520,6 +4721,17 @@ koa-is-json@^1.0.0: resolved "https://registry.npm.taobao.org/koa-is-json/download/koa-is-json-1.0.0.tgz#273c07edcdcb8df6a2c1ab7d59ee76491451ec14" integrity sha1-JzwH7c3Ljfaiwat9We52SRRR7BQ= +koa-jwt2@^1.0.3: + version "1.0.3" + resolved "https://registry.npm.taobao.org/koa-jwt2/download/koa-jwt2-1.0.3.tgz#a80309800d0bb2c0f957b8b2cecc2cae0444f219" + integrity sha1-qAMJgA0LssD5V7iyzswsrgRE8hk= + dependencies: + async "^1.5.0" + jsonwebtoken "^8.1.0" + koa-unless "^1.0.7" + lodash.isfunction "^3.0.9" + lodash.set "^4.0.0" + koa-locales@^1.11.0: version "1.12.0" resolved "https://registry.npm.taobao.org/koa-locales/download/koa-locales-1.12.0.tgz#0c2a7082947a9263afc25ba73b68af6a2201f09d" @@ -4573,6 +4785,11 @@ koa-static-cache@^5.1.2: mime-types "^2.1.8" mz "^2.7.0" +koa-unless@^1.0.7: + version "1.0.7" + resolved "https://registry.npm.taobao.org/koa-unless/download/koa-unless-1.0.7.tgz#b9df375e2b4da3043918d48622520c2c0b79f032" + integrity sha1-ud83XitNowQ5GNSGIlIMLAt58DI= + koa@^2.7.0: version "2.11.0" resolved "https://registry.npm.taobao.org/koa/download/koa-2.11.0.tgz?cache=0&sync_timestamp=1572232118391&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fkoa%2Fdownload%2Fkoa-2.11.0.tgz#fe5a51c46f566d27632dd5dc8fd5d7dd44f935a4" @@ -4704,12 +4921,52 @@ lodash.has@^4.5.2: resolved "https://registry.npm.taobao.org/lodash.has/download/lodash.has-4.5.2.tgz#d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862" integrity sha1-0Z9NwQlQWMzL4rDN9O4P5Ko3yGI= +lodash.includes@^4.3.0: + version "4.3.0" + resolved "https://registry.npm.taobao.org/lodash.includes/download/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" + integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8= + +lodash.isboolean@^3.0.3: + version "3.0.3" + resolved "https://registry.npm.taobao.org/lodash.isboolean/download/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" + integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= + +lodash.isfunction@^3.0.9: + version "3.0.9" + resolved "https://registry.npm.taobao.org/lodash.isfunction/download/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" + integrity sha1-Bt4l302zJ6yTGYHRvbBn5a9o0FE= + +lodash.isinteger@^4.0.4: + version "4.0.4" + resolved "https://registry.npm.taobao.org/lodash.isinteger/download/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" + integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M= + +lodash.isnumber@^3.0.3: + version "3.0.3" + resolved "https://registry.npm.taobao.org/lodash.isnumber/download/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" + integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w= + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.npm.taobao.org/lodash.isplainobject/download/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= + +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.npm.taobao.org/lodash.isstring/download/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= + lodash.keys@^4.2.0: version "4.2.0" resolved "https://registry.npm.taobao.org/lodash.keys/download/lodash.keys-4.2.0.tgz#a08602ac12e4fb83f91fc1fb7a360a4d9ba35205" integrity sha1-oIYCrBLk+4P5H8H7ejYKTZujUgU= -lodash.set@^4.3.2: +lodash.once@^4.0.0: + version "4.1.1" + resolved "https://registry.npm.taobao.org/lodash.once/download/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= + +lodash.set@^4.0.0, lodash.set@^4.3.2: version "4.3.2" resolved "https://registry.npm.taobao.org/lodash.set/download/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= @@ -5267,6 +5524,11 @@ normalize-path@^3.0.0: resolved "https://registry.npm.taobao.org/normalize-path/download/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU= +notepack.io@~2.1.2: + version "2.1.3" + resolved "https://registry.npm.taobao.org/notepack.io/download/notepack.io-2.1.3.tgz#cc904045c751b1a27b2dcfd838d81d0bf3ced923" + integrity sha1-zJBARcdRsaJ7Lc/YONgdC/PO2SM= + npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz?cache=0&sync_timestamp=1571055744220&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnpm-run-path%2Fdownload%2Fnpm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -5325,6 +5587,11 @@ object-assign@^4.0.1, object-assign@^4.1.0: resolved "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= +object-component@0.0.3: + version "0.0.3" + resolved "https://registry.npm.taobao.org/object-component/download/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" + integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= + object-copy@^0.1.0: version "0.1.0" resolved "https://registry.npm.taobao.org/object-copy/download/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" @@ -5552,6 +5819,20 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" +parseqs@0.0.5: + version "0.0.5" + resolved "https://registry.npm.taobao.org/parseqs/download/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" + integrity sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0= + dependencies: + better-assert "~1.0.0" + +parseuri@0.0.5: + version "0.0.5" + resolved "https://registry.npm.taobao.org/parseuri/download/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" + integrity sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo= + dependencies: + better-assert "~1.0.0" + parseurl@^1.3.2: version "1.3.3" resolved "https://registry.npm.taobao.org/parseurl/download/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" @@ -5995,7 +6276,7 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" -redis-commands@1.5.0: +redis-commands@1.5.0, redis-commands@^1.2.0: version "1.5.0" resolved "https://registry.npm.taobao.org/redis-commands/download/redis-commands-1.5.0.tgz#80d2e20698fe688f227127ff9e5164a7dd17e785" integrity sha1-gNLiBpj+aI8icSf/nlFkp90X54U= @@ -6005,6 +6286,11 @@ redis-errors@^1.0.0, redis-errors@^1.2.0: resolved "https://registry.npm.taobao.org/redis-errors/download/redis-errors-1.2.0.tgz#eb62d2adb15e4eaf4610c04afe1529384250abad" integrity sha1-62LSrbFeTq9GEMBK/hUpOEJQq60= +redis-parser@^2.6.0: + version "2.6.0" + resolved "https://registry.npm.taobao.org/redis-parser/download/redis-parser-2.6.0.tgz#52ed09dacac108f1a631c07e9b69941e7a19504b" + integrity sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs= + redis-parser@^3.0.0: version "3.0.0" resolved "https://registry.npm.taobao.org/redis-parser/download/redis-parser-3.0.0.tgz#b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4" @@ -6012,6 +6298,15 @@ redis-parser@^3.0.0: dependencies: redis-errors "^1.0.0" +redis@~2.8.0: + version "2.8.0" + resolved "https://registry.npm.taobao.org/redis/download/redis-2.8.0.tgz?cache=0&sync_timestamp=1581263482888&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fredis%2Fdownload%2Fredis-2.8.0.tgz#202288e3f58c49f6079d97af7a10e1303ae14b02" + integrity sha1-ICKI4/WMSfYHnZevehDhMDrhSwI= + dependencies: + double-ended-queue "^2.1.0-0" + redis-commands "^1.2.0" + redis-parser "^2.6.0" + reflect-metadata@^0.1.13: version "0.1.13" resolved "https://registry.npm.taobao.org/reflect-metadata/download/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" @@ -6187,6 +6482,11 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= +safe-buffer@^5.0.1: + version "5.2.0" + resolved "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" + integrity sha1-t02uxJsRSPiMZLaNSbHoFcHy9Rk= + safe-regex@^1.1.0: version "1.1.0" resolved "https://registry.npm.taobao.org/safe-regex/download/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" @@ -6393,6 +6693,72 @@ snapdragon@^0.8.1: source-map-resolve "^0.5.0" use "^3.1.0" +socket.io-adapter@~1.1.0: + version "1.1.2" + resolved "https://registry.npm.taobao.org/socket.io-adapter/download/socket.io-adapter-1.1.2.tgz#ab3f0d6f66b8fc7fca3959ab5991f82221789be9" + integrity sha1-qz8Nb2a4/H/KOVmrWZH4IiF4m+k= + +socket.io-client@2.3.0: + version "2.3.0" + resolved "https://registry.npm.taobao.org/socket.io-client/download/socket.io-client-2.3.0.tgz#14d5ba2e00b9bcd145ae443ab96b3f86cbcc1bb4" + integrity sha1-FNW6LgC5vNFFrkQ6uWs/hsvMG7Q= + dependencies: + backo2 "1.0.2" + base64-arraybuffer "0.1.5" + component-bind "1.0.0" + component-emitter "1.2.1" + debug "~4.1.0" + engine.io-client "~3.4.0" + has-binary2 "~1.0.2" + has-cors "1.1.0" + indexof "0.0.1" + object-component "0.0.3" + parseqs "0.0.5" + parseuri "0.0.5" + socket.io-parser "~3.3.0" + to-array "0.1.4" + +socket.io-parser@~3.3.0: + version "3.3.0" + resolved "https://registry.npm.taobao.org/socket.io-parser/download/socket.io-parser-3.3.0.tgz#2b52a96a509fdf31440ba40fed6094c7d4f1262f" + integrity sha1-K1KpalCf3zFEC6QP7WCUx9TxJi8= + dependencies: + component-emitter "1.2.1" + debug "~3.1.0" + isarray "2.0.1" + +socket.io-parser@~3.4.0: + version "3.4.0" + resolved "https://registry.npm.taobao.org/socket.io-parser/download/socket.io-parser-3.4.0.tgz#370bb4a151df2f77ce3345ff55a7072cc6e9565a" + integrity sha1-Nwu0oVHfL3fOM0X/VacHLMbpVlo= + dependencies: + component-emitter "1.2.1" + debug "~4.1.0" + isarray "2.0.1" + +socket.io-redis@^5.2.0: + version "5.2.0" + resolved "https://registry.npm.taobao.org/socket.io-redis/download/socket.io-redis-5.2.0.tgz#8fe2ad9445fc50886fb70abc759d67403d5899df" + integrity sha1-j+KtlEX8UIhvtwq8dZ1nQD1Ymd8= + dependencies: + debug "~2.6.8" + notepack.io "~2.1.2" + redis "~2.8.0" + socket.io-adapter "~1.1.0" + uid2 "0.0.3" + +socket.io@^2.1.1: + version "2.3.0" + resolved "https://registry.npm.taobao.org/socket.io/download/socket.io-2.3.0.tgz#cd762ed6a4faeca59bc1f3e243c0969311eb73fb" + integrity sha1-zXYu1qT67KWbwfPiQ8CWkxHrc/s= + dependencies: + debug "~4.1.0" + engine.io "~3.4.0" + has-binary2 "~1.0.2" + socket.io-adapter "~1.1.0" + socket.io-client "2.3.0" + socket.io-parser "~3.4.0" + socks-proxy-agent@^4.0.1: version "4.0.2" resolved "https://registry.npm.taobao.org/socks-proxy-agent/download/socks-proxy-agent-4.0.2.tgz#3c8991f3145b2799e70e11bd5fbc8b1963116386" @@ -6821,6 +7187,11 @@ tmpl@1.0.x: resolved "https://registry.npm.taobao.org/tmpl/download/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= +to-array@0.1.4: + version "0.1.4" + resolved "https://registry.npm.taobao.org/to-array/download/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" + integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= + to-fast-properties@^1.0.3: version "1.0.3" resolved "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" @@ -7050,6 +7421,11 @@ uid-safe@2.1.5: dependencies: random-bytes "~1.0.0" +uid2@0.0.3: + version "0.0.3" + resolved "https://registry.npm.taobao.org/uid2/download/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" + integrity sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I= + unescape@^1.0.1: version "1.0.1" resolved "https://registry.npm.taobao.org/unescape/download/unescape-1.0.1.tgz#956e430f61cad8a4d57d82c518f5e6cc5d0dda96" @@ -7296,6 +7672,18 @@ write-file-atomic@^2.4.2: imurmurhash "^0.1.4" signal-exit "^3.0.2" +ws@^7.1.2: + version "7.2.3" + resolved "https://registry.npm.taobao.org/ws/download/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46" + integrity sha1-pUEeH7BNXtDv7nbSbVxG2DDDm0Y= + +ws@~6.1.0: + version "6.1.4" + resolved "https://registry.npm.taobao.org/ws/download/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9" + integrity sha1-W1yIAK+rkl6UzLKdFTyNAsF3bvk= + dependencies: + async-limiter "~1.0.0" + wt@^1.2.0: version "1.2.0" resolved "https://registry.npm.taobao.org/wt/download/wt-1.2.0.tgz#b4cbe34c1f50a56a5433a9dda8cbdb7c62e3bcdf" @@ -7305,6 +7693,11 @@ wt@^1.2.0: ndir "^0.1.5" sdk-base "^2.0.1" +xmlhttprequest-ssl@~1.5.4: + version "1.5.5" + resolved "https://registry.npm.taobao.org/xmlhttprequest-ssl/download/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" + integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= + xregexp@2.0.0: version "2.0.0" resolved "https://registry.npm.taobao.org/xregexp/download/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" @@ -7441,6 +7834,11 @@ yargs@^7.0.1: y18n "^3.2.1" yargs-parser "^5.0.0" +yeast@0.1.2: + version "0.1.2" + resolved "https://registry.npm.taobao.org/yeast/download/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" + integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= + ylru@^1.2.0, ylru@^1.2.1: version "1.2.1" resolved "https://registry.npm.taobao.org/ylru/download/ylru-1.2.1.tgz#f576b63341547989c1de7ba288760923b27fe84f"