├── .env.template ├── .github ├── pull_request_template.md └── workflows │ ├── deploy-pre.yml │ └── deploy-prod.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README-cn.md ├── README.md ├── bin ├── build.sh └── start.sh ├── community ├── CONTRIBUTING.md └── ROLES.md ├── docs ├── en-US │ ├── api-reference.md │ ├── demo.md │ ├── developer-manual.md │ └── quick-start.md ├── img │ ├── api-fmt.jpg │ ├── arch.jpg │ ├── expand.jpg │ ├── fanzhidongyzby-part.png │ ├── flink-comm.png │ ├── graphs.png │ ├── llama3-eco.png │ ├── logo.png │ ├── os-schema.png │ ├── osgraph.svg │ ├── sindresorhus-intr.png │ ├── spark-contrib.png │ ├── torvalds-act.png │ ├── torvalds.png │ └── vertices-hierarchy.svg └── zh-CN │ ├── api-reference.md │ ├── demo.md │ ├── developer-manual.md │ └── quick-start.md ├── osgraph-service ├── .gitignore ├── app │ ├── __init__.py │ ├── dal │ │ ├── __init__.py │ │ ├── graph │ │ │ ├── __init__.py │ │ │ └── tugraph.py │ │ └── search │ │ │ └── es.py │ ├── llm │ │ ├── __init__.py │ │ ├── openai_client.py │ │ └── prompt_templates │ │ │ ├── __init__.py │ │ │ └── graph_summary.py │ ├── managers │ │ ├── __init__.py │ │ ├── developer_activity.py │ │ ├── fulltext_search.py │ │ ├── graph_list.py │ │ ├── os_interest.py │ │ ├── os_partner.py │ │ ├── project_community.py │ │ ├── project_contribution.py │ │ └── project_ecosystem.py │ ├── models │ │ ├── __init__.py │ │ ├── default_graph.py │ │ ├── graph_view.py │ │ └── system_graph.py │ ├── routes │ │ ├── __init__.py │ │ ├── developer_activity.py │ │ ├── fulltext_search.py │ │ ├── graph_list.py │ │ ├── os_interest.py │ │ ├── os_partner.py │ │ ├── project_community.py │ │ ├── project_contribution.py │ │ ├── project_ecosystem.py │ │ └── render_graph.py │ ├── script │ │ ├── g6_render.js │ │ └── package.json │ ├── services │ │ ├── __init__.py │ │ ├── fulltext_search.py │ │ ├── graph_list.py │ │ ├── graph_services │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── developer_activity.py │ │ │ ├── os_interest.py │ │ │ ├── os_partner.py │ │ │ ├── project_community.py │ │ │ ├── project_contribution.py │ │ │ └── project_ecosystem.py │ │ └── graph_summary.py │ └── utils │ │ ├── custom_exceptions.py │ │ ├── get_lang.py │ │ ├── logger.py │ │ └── response_handler.py ├── config.py ├── pyproject.toml ├── server.py └── tests │ ├── __init__.py │ ├── managers │ └── __init__.py │ └── services │ ├── __init__.py │ ├── test_fulltext_search.py │ ├── test_graph_list.py │ └── test_project_community.py └── osgraph-web ├── .eslintrc.cjs ├── .gitignore ├── index.css ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── 404 │ └── index.tsx ├── assets │ ├── country.svg │ ├── entry.ts │ ├── icons │ │ ├── demo.css │ │ ├── demo_index.html │ │ ├── iconfont.css │ │ ├── iconfont.js │ │ ├── iconfont.json │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── logo.png │ ├── org.svg │ ├── project.svg │ └── user.svg ├── components │ ├── extend-params │ │ ├── index.module.less │ │ └── index.tsx │ ├── graph-menu-item │ │ ├── index.module.less │ │ └── index.tsx │ ├── graph │ │ ├── index.tsx │ │ ├── plugin │ │ │ └── multiple-selects.ts │ │ └── translator │ │ │ ├── diffGraphs.ts │ │ │ ├── filterGraphData.ts │ │ │ └── removeExistElement.ts │ ├── icon-font │ │ ├── index.module.less │ │ └── index.tsx │ ├── index.ts │ ├── language │ │ ├── index.module.less │ │ └── index.tsx │ ├── layout-select │ │ ├── index.module.less │ │ └── index.tsx │ └── project-search │ │ ├── index.module.less │ │ ├── index.tsx │ │ └── translator │ │ ├── transParamsName.ts │ │ └── transTemplateList.ts ├── constants │ ├── data.ts │ ├── graph.ts │ ├── index.ts │ ├── links.ts │ ├── log.ts │ └── regExp.ts ├── controller │ └── index.tsx ├── global.d.ts ├── home │ ├── index.module.less │ └── index.tsx ├── i18n │ ├── en │ │ └── translation.json │ ├── index.ts │ └── zh │ │ └── translation.json ├── interfaces │ └── index.ts ├── main.tsx ├── result │ ├── components │ │ └── extension-modal │ │ │ ├── index.module.less │ │ │ └── index.tsx │ ├── index.module.less │ ├── index.tsx │ ├── style.ts │ └── translator │ │ ├── graph.ts │ │ ├── index.ts │ │ └── initGraphDataPosition.ts ├── router │ └── index.tsx ├── services │ ├── homePage.ts │ ├── homePage_new.ts │ ├── result.ts │ └── result_new.ts ├── style │ └── index.ts ├── utils │ ├── date.ts │ ├── get-url-params.ts │ ├── graph-data-transtalor │ │ └── index.ts │ ├── graph-merge.ts │ ├── graph3D.tsx │ ├── index.ts │ ├── isFontLoaded.ts │ ├── isMobile.ts │ ├── local-store.ts │ ├── make-var-css.ts │ └── toolTip.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/.env.template -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy-pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/.github/workflows/deploy-pre.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/.github/workflows/deploy-prod.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | !.gitignore 3 | .idea 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/README-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/bin/build.sh -------------------------------------------------------------------------------- /bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/bin/start.sh -------------------------------------------------------------------------------- /community/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/community/CONTRIBUTING.md -------------------------------------------------------------------------------- /community/ROLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/community/ROLES.md -------------------------------------------------------------------------------- /docs/en-US/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/en-US/api-reference.md -------------------------------------------------------------------------------- /docs/en-US/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/en-US/demo.md -------------------------------------------------------------------------------- /docs/en-US/developer-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/en-US/developer-manual.md -------------------------------------------------------------------------------- /docs/en-US/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/en-US/quick-start.md -------------------------------------------------------------------------------- /docs/img/api-fmt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/api-fmt.jpg -------------------------------------------------------------------------------- /docs/img/arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/arch.jpg -------------------------------------------------------------------------------- /docs/img/expand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/expand.jpg -------------------------------------------------------------------------------- /docs/img/fanzhidongyzby-part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/fanzhidongyzby-part.png -------------------------------------------------------------------------------- /docs/img/flink-comm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/flink-comm.png -------------------------------------------------------------------------------- /docs/img/graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/graphs.png -------------------------------------------------------------------------------- /docs/img/llama3-eco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/llama3-eco.png -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/img/os-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/os-schema.png -------------------------------------------------------------------------------- /docs/img/osgraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/osgraph.svg -------------------------------------------------------------------------------- /docs/img/sindresorhus-intr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/sindresorhus-intr.png -------------------------------------------------------------------------------- /docs/img/spark-contrib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/spark-contrib.png -------------------------------------------------------------------------------- /docs/img/torvalds-act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/torvalds-act.png -------------------------------------------------------------------------------- /docs/img/torvalds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/torvalds.png -------------------------------------------------------------------------------- /docs/img/vertices-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/img/vertices-hierarchy.svg -------------------------------------------------------------------------------- /docs/zh-CN/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/zh-CN/api-reference.md -------------------------------------------------------------------------------- /docs/zh-CN/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/zh-CN/demo.md -------------------------------------------------------------------------------- /docs/zh-CN/developer-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/zh-CN/developer-manual.md -------------------------------------------------------------------------------- /docs/zh-CN/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/docs/zh-CN/quick-start.md -------------------------------------------------------------------------------- /osgraph-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/.gitignore -------------------------------------------------------------------------------- /osgraph-service/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/__init__.py -------------------------------------------------------------------------------- /osgraph-service/app/dal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/app/dal/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/app/dal/graph/tugraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/dal/graph/tugraph.py -------------------------------------------------------------------------------- /osgraph-service/app/dal/search/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/dal/search/es.py -------------------------------------------------------------------------------- /osgraph-service/app/llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/app/llm/openai_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/llm/openai_client.py -------------------------------------------------------------------------------- /osgraph-service/app/llm/prompt_templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/app/llm/prompt_templates/graph_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/llm/prompt_templates/graph_summary.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/app/managers/developer_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/developer_activity.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/fulltext_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/fulltext_search.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/graph_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/graph_list.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/os_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/os_interest.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/os_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/os_partner.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/project_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/project_community.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/project_contribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/project_contribution.py -------------------------------------------------------------------------------- /osgraph-service/app/managers/project_ecosystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/managers/project_ecosystem.py -------------------------------------------------------------------------------- /osgraph-service/app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/app/models/default_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/models/default_graph.py -------------------------------------------------------------------------------- /osgraph-service/app/models/graph_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/models/graph_view.py -------------------------------------------------------------------------------- /osgraph-service/app/models/system_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/models/system_graph.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/app/routes/developer_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/developer_activity.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/fulltext_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/fulltext_search.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/graph_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/graph_list.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/os_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/os_interest.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/os_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/os_partner.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/project_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/project_community.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/project_contribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/project_contribution.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/project_ecosystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/project_ecosystem.py -------------------------------------------------------------------------------- /osgraph-service/app/routes/render_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/routes/render_graph.py -------------------------------------------------------------------------------- /osgraph-service/app/script/g6_render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/script/g6_render.js -------------------------------------------------------------------------------- /osgraph-service/app/script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/script/package.json -------------------------------------------------------------------------------- /osgraph-service/app/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/__init__.py -------------------------------------------------------------------------------- /osgraph-service/app/services/fulltext_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/fulltext_search.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_list.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/__init__.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/base.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/developer_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/developer_activity.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/os_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/os_interest.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/os_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/os_partner.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/project_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/project_community.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/project_contribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/project_contribution.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_services/project_ecosystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_services/project_ecosystem.py -------------------------------------------------------------------------------- /osgraph-service/app/services/graph_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/services/graph_summary.py -------------------------------------------------------------------------------- /osgraph-service/app/utils/custom_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/utils/custom_exceptions.py -------------------------------------------------------------------------------- /osgraph-service/app/utils/get_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/utils/get_lang.py -------------------------------------------------------------------------------- /osgraph-service/app/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/utils/logger.py -------------------------------------------------------------------------------- /osgraph-service/app/utils/response_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/app/utils/response_handler.py -------------------------------------------------------------------------------- /osgraph-service/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/config.py -------------------------------------------------------------------------------- /osgraph-service/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/pyproject.toml -------------------------------------------------------------------------------- /osgraph-service/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/server.py -------------------------------------------------------------------------------- /osgraph-service/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/tests/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/tests/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /osgraph-service/tests/services/test_fulltext_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/tests/services/test_fulltext_search.py -------------------------------------------------------------------------------- /osgraph-service/tests/services/test_graph_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/tests/services/test_graph_list.py -------------------------------------------------------------------------------- /osgraph-service/tests/services/test_project_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-service/tests/services/test_project_community.py -------------------------------------------------------------------------------- /osgraph-web/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/.eslintrc.cjs -------------------------------------------------------------------------------- /osgraph-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/.gitignore -------------------------------------------------------------------------------- /osgraph-web/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/index.css -------------------------------------------------------------------------------- /osgraph-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/index.html -------------------------------------------------------------------------------- /osgraph-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/package.json -------------------------------------------------------------------------------- /osgraph-web/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/pnpm-lock.yaml -------------------------------------------------------------------------------- /osgraph-web/src/404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/404/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/assets/country.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/country.svg -------------------------------------------------------------------------------- /osgraph-web/src/assets/entry.ts: -------------------------------------------------------------------------------- 1 | import './logo.png'; -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/demo.css -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/demo_index.html -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/iconfont.css -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/iconfont.js -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/iconfont.json -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/iconfont.ttf -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/iconfont.woff -------------------------------------------------------------------------------- /osgraph-web/src/assets/icons/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/icons/iconfont.woff2 -------------------------------------------------------------------------------- /osgraph-web/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/logo.png -------------------------------------------------------------------------------- /osgraph-web/src/assets/org.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/org.svg -------------------------------------------------------------------------------- /osgraph-web/src/assets/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/project.svg -------------------------------------------------------------------------------- /osgraph-web/src/assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/assets/user.svg -------------------------------------------------------------------------------- /osgraph-web/src/components/extend-params/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/extend-params/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/components/extend-params/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/extend-params/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/components/graph-menu-item/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/graph-menu-item/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/components/graph-menu-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/graph-menu-item/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/components/graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/graph/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/components/graph/plugin/multiple-selects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/graph/plugin/multiple-selects.ts -------------------------------------------------------------------------------- /osgraph-web/src/components/graph/translator/diffGraphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/graph/translator/diffGraphs.ts -------------------------------------------------------------------------------- /osgraph-web/src/components/graph/translator/filterGraphData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/graph/translator/filterGraphData.ts -------------------------------------------------------------------------------- /osgraph-web/src/components/graph/translator/removeExistElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/graph/translator/removeExistElement.ts -------------------------------------------------------------------------------- /osgraph-web/src/components/icon-font/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/icon-font/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/components/icon-font/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/icon-font/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/index.ts -------------------------------------------------------------------------------- /osgraph-web/src/components/language/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/language/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/components/language/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/language/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/components/layout-select/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/layout-select/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/components/layout-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/layout-select/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/components/project-search/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/project-search/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/components/project-search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/project-search/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/components/project-search/translator/transParamsName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/project-search/translator/transParamsName.ts -------------------------------------------------------------------------------- /osgraph-web/src/components/project-search/translator/transTemplateList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/components/project-search/translator/transTemplateList.ts -------------------------------------------------------------------------------- /osgraph-web/src/constants/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/constants/data.ts -------------------------------------------------------------------------------- /osgraph-web/src/constants/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/constants/graph.ts -------------------------------------------------------------------------------- /osgraph-web/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/constants/index.ts -------------------------------------------------------------------------------- /osgraph-web/src/constants/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/constants/links.ts -------------------------------------------------------------------------------- /osgraph-web/src/constants/log.ts: -------------------------------------------------------------------------------- 1 | export const SPAPOS = "a4378"; -------------------------------------------------------------------------------- /osgraph-web/src/constants/regExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/constants/regExp.ts -------------------------------------------------------------------------------- /osgraph-web/src/controller/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/controller/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/global.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | Tracert: any; 3 | } -------------------------------------------------------------------------------- /osgraph-web/src/home/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/home/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/home/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/i18n/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/i18n/en/translation.json -------------------------------------------------------------------------------- /osgraph-web/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/i18n/index.ts -------------------------------------------------------------------------------- /osgraph-web/src/i18n/zh/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/i18n/zh/translation.json -------------------------------------------------------------------------------- /osgraph-web/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/interfaces/index.ts -------------------------------------------------------------------------------- /osgraph-web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/main.tsx -------------------------------------------------------------------------------- /osgraph-web/src/result/components/extension-modal/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/components/extension-modal/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/result/components/extension-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/components/extension-modal/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/result/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/index.module.less -------------------------------------------------------------------------------- /osgraph-web/src/result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/result/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/style.ts -------------------------------------------------------------------------------- /osgraph-web/src/result/translator/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/translator/graph.ts -------------------------------------------------------------------------------- /osgraph-web/src/result/translator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/translator/index.ts -------------------------------------------------------------------------------- /osgraph-web/src/result/translator/initGraphDataPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/result/translator/initGraphDataPosition.ts -------------------------------------------------------------------------------- /osgraph-web/src/router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/router/index.tsx -------------------------------------------------------------------------------- /osgraph-web/src/services/homePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/services/homePage.ts -------------------------------------------------------------------------------- /osgraph-web/src/services/homePage_new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/services/homePage_new.ts -------------------------------------------------------------------------------- /osgraph-web/src/services/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/services/result.ts -------------------------------------------------------------------------------- /osgraph-web/src/services/result_new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/services/result_new.ts -------------------------------------------------------------------------------- /osgraph-web/src/style/index.ts: -------------------------------------------------------------------------------- 1 | export const GLOBAL_STYLES = { 2 | "search-height": "54px", 3 | }; 4 | -------------------------------------------------------------------------------- /osgraph-web/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/date.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/get-url-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/get-url-params.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/graph-data-transtalor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/graph-data-transtalor/index.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/graph-merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/graph-merge.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/graph3D.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/graph3D.tsx -------------------------------------------------------------------------------- /osgraph-web/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/index.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/isFontLoaded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/isFontLoaded.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/isMobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/isMobile.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/local-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/local-store.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/make-var-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/make-var-css.ts -------------------------------------------------------------------------------- /osgraph-web/src/utils/toolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/src/utils/toolTip.tsx -------------------------------------------------------------------------------- /osgraph-web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /osgraph-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/tsconfig.json -------------------------------------------------------------------------------- /osgraph-web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/tsconfig.node.json -------------------------------------------------------------------------------- /osgraph-web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuGraph-family/OSGraph/HEAD/osgraph-web/vite.config.ts --------------------------------------------------------------------------------