commit bd62123551c5cdd0c0538534547ee9f97f0da29e Author: zhaoyingbo Date: Tue Mar 5 09:52:36 2024 +0000 init: 初始化项目 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..32a8dee --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,32 @@ +{ + "name": "ci_monitor", + "image": "micr.cloud.mioffice.cn/zhaoyingbo/dev:bun", + "remoteUser": "bun", + "containerUser": "bun", + "customizations": { + "vscode": { + "settings": { + "files.autoSave": "off", + "editor.guides.bracketPairs": true, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll.stylelint": true + } + }, + "extensions": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "eamodio.gitlens", + "unifiedjs.vscode-mdx", + "oderwat.indent-rainbow", + "jock.svg", + "ChakrounAnas.turbo-console-log", + "Gruntfuggly.todo-tree", + "MS-CEINTL.vscode-language-pack-zh-hans", + "stylelint.vscode-stylelint", + "Alibaba-Cloud.tongyi-lingma" + ] + } + } +} diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..81c05ed --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.lockb binary diff=lockb diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..52962c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,58 @@ +# Logs +logs +*.log +npm-debug.log* + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules +jspm_packages + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history + +# 0x +profile-* + +# mac files +.DS_Store + +# vim swap files +*.swp + +# webstorm +.idea + +# vscode +.vscode +*code-workspace + +# clinic +profile* +*clinic* +*flamegraph* diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..7d2804f Binary files /dev/null and b/bun.lockb differ diff --git a/db/pb.ts b/db/pb.ts new file mode 100644 index 0000000..2f9738e --- /dev/null +++ b/db/pb.ts @@ -0,0 +1,8 @@ +import PocketBase from "pocketbase"; + +const pb = new PocketBase("https://ci-pb.xiaomiwh.cn"); + +export const getTenantAccessToken = async () => { + const { value } = await pb.collection("config").getOne("ugel8f0cpk0rut6"); + return value; +}; diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json new file mode 100644 index 0000000..12520ff --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "ci_monitor", + "module": "index.ts", + "type": "module", + "scripts": { + "start": "bun run index.ts" + }, + "devDependencies": { + "bun-types": "latest" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "dependencies": { + "@types/node-schedule": "^2.1.6", + "node-schedule": "^2.1.1", + "pocketbase": "^0.21.1" + } +} diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..abfda8c --- /dev/null +++ b/readme.md @@ -0,0 +1 @@ +# CI 监控 diff --git a/service/test.ts b/service/test.ts new file mode 100644 index 0000000..175d5b8 --- /dev/null +++ b/service/test.ts @@ -0,0 +1,39 @@ +const fetchProjectDetails = async () => { + const response = await fetch( + "https://git.n.xiaomi.com/api/v4/projects/131366", + { + method: "GET", + headers: { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" }, + } + ); + const body = await response.json(); + console.log(body); +}; + +const fetchPipelineDetails = async () => { + const response = await fetch( + "https://git.n.xiaomi.com/api/v4/projects/131366/pipelines/7646046", + { + method: "GET", + headers: { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" }, + } + ); + const body = await response.json(); + console.log(body); +}; + +const fetchPipelines = async () => { + const response = await fetch( + "https://git.n.xiaomi.com/api/v4/projects/131366/pipelines", + { + method: "GET", + headers: { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" }, + } + ); + const body = await response.json(); + console.log(body); +}; + +// fetchPipelines(); +// fetchPipelineDetails(); +fetchProjectDetails(); diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..7556e1d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "lib": ["ESNext"], + "module": "esnext", + "target": "esnext", + "moduleResolution": "bundler", + "moduleDetection": "force", + "allowImportingTsExtensions": true, + "noEmit": true, + "composite": true, + "strict": true, + "downlevelIteration": true, + "skipLibCheck": true, + "jsx": "react-jsx", + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "types": [ + "bun-types" // add Bun global + ] + } +}