Feature/1 add projects and about pages #3
25
api/.eslintrc.js
Normal file
25
api/.eslintrc.js
Normal file
@@ -0,0 +1,25 @@
|
||||
module.exports = {
|
||||
parser: '@typescript-eslint/parser',
|
||||
parserOptions: {
|
||||
project: 'tsconfig.json',
|
||||
tsconfigRootDir: __dirname,
|
||||
sourceType: 'module',
|
||||
},
|
||||
plugins: ['@typescript-eslint/eslint-plugin'],
|
||||
extends: [
|
||||
'plugin:@typescript-eslint/recommended',
|
||||
'plugin:prettier/recommended',
|
||||
],
|
||||
root: true,
|
||||
env: {
|
||||
node: true,
|
||||
jest: true,
|
||||
},
|
||||
ignorePatterns: ['.eslintrc.js'],
|
||||
rules: {
|
||||
'@typescript-eslint/interface-name-prefix': 'off',
|
||||
'@typescript-eslint/explicit-function-return-type': 'off',
|
||||
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'off',
|
||||
},
|
||||
};
|
||||
7
api/.funcignore
Normal file
7
api/.funcignore
Normal file
@@ -0,0 +1,7 @@
|
||||
*.js.map
|
||||
*.ts
|
||||
.git*
|
||||
.vscode
|
||||
local.settings.json
|
||||
test
|
||||
tsconfig.json
|
||||
56
api/.gitignore
vendored
Normal file
56
api/.gitignore
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
# compiled output
|
||||
/dist
|
||||
/node_modules
|
||||
/build
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
pnpm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
|
||||
# Tests
|
||||
/coverage
|
||||
/.nyc_output
|
||||
|
||||
# IDEs and editors
|
||||
/.idea
|
||||
.project
|
||||
.classpath
|
||||
.c9/
|
||||
*.launch
|
||||
.settings/
|
||||
*.sublime-workspace
|
||||
|
||||
# IDE - VSCode
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
|
||||
# dotenv environment variable files
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# temp directory
|
||||
.temp
|
||||
.tmp
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
4
api/.prettierrc
Normal file
4
api/.prettierrc
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"singleQuote": true,
|
||||
"trailingComma": "all"
|
||||
}
|
||||
73
api/README.md
Normal file
73
api/README.md
Normal file
@@ -0,0 +1,73 @@
|
||||
<p align="center">
|
||||
<a href="http://nestjs.com/" target="blank"><img src="https://nestjs.com/img/logo-small.svg" width="200" alt="Nest Logo" /></a>
|
||||
</p>
|
||||
|
||||
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
|
||||
[circleci-url]: https://circleci.com/gh/nestjs/nest
|
||||
|
||||
<p align="center">A progressive <a href="http://nodejs.org" target="_blank">Node.js</a> framework for building efficient and scalable server-side applications.</p>
|
||||
<p align="center">
|
||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/v/@nestjs/core.svg" alt="NPM Version" /></a>
|
||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/l/@nestjs/core.svg" alt="Package License" /></a>
|
||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/dm/@nestjs/common.svg" alt="NPM Downloads" /></a>
|
||||
<a href="https://circleci.com/gh/nestjs/nest" target="_blank"><img src="https://img.shields.io/circleci/build/github/nestjs/nest/master" alt="CircleCI" /></a>
|
||||
<a href="https://coveralls.io/github/nestjs/nest?branch=master" target="_blank"><img src="https://coveralls.io/repos/github/nestjs/nest/badge.svg?branch=master#9" alt="Coverage" /></a>
|
||||
<a href="https://discord.gg/G7Qnnhy" target="_blank"><img src="https://img.shields.io/badge/discord-online-brightgreen.svg" alt="Discord"/></a>
|
||||
<a href="https://opencollective.com/nest#backer" target="_blank"><img src="https://opencollective.com/nest/backers/badge.svg" alt="Backers on Open Collective" /></a>
|
||||
<a href="https://opencollective.com/nest#sponsor" target="_blank"><img src="https://opencollective.com/nest/sponsors/badge.svg" alt="Sponsors on Open Collective" /></a>
|
||||
<a href="https://paypal.me/kamilmysliwiec" target="_blank"><img src="https://img.shields.io/badge/Donate-PayPal-ff3f59.svg"/></a>
|
||||
<a href="https://opencollective.com/nest#sponsor" target="_blank"><img src="https://img.shields.io/badge/Support%20us-Open%20Collective-41B883.svg" alt="Support us"></a>
|
||||
<a href="https://twitter.com/nestframework" target="_blank"><img src="https://img.shields.io/twitter/follow/nestframework.svg?style=social&label=Follow"></a>
|
||||
</p>
|
||||
<!--[](https://opencollective.com/nest#backer)
|
||||
[](https://opencollective.com/nest#sponsor)-->
|
||||
|
||||
## Description
|
||||
|
||||
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
$ npm install
|
||||
```
|
||||
|
||||
## Running the app
|
||||
|
||||
```bash
|
||||
# development
|
||||
$ npm run start
|
||||
|
||||
# watch mode
|
||||
$ npm run start:dev
|
||||
|
||||
# production mode
|
||||
$ npm run start:prod
|
||||
```
|
||||
|
||||
## Test
|
||||
|
||||
```bash
|
||||
# unit tests
|
||||
$ npm run test
|
||||
|
||||
# e2e tests
|
||||
$ npm run test:e2e
|
||||
|
||||
# test coverage
|
||||
$ npm run test:cov
|
||||
```
|
||||
|
||||
## Support
|
||||
|
||||
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
|
||||
|
||||
## Stay in touch
|
||||
|
||||
- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
|
||||
- Website - [https://nestjs.com](https://nestjs.com/)
|
||||
- Twitter - [@nestframework](https://twitter.com/nestframework)
|
||||
|
||||
## License
|
||||
|
||||
Nest is [MIT licensed](LICENSE).
|
||||
3
api/host.json
Normal file
3
api/host.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"version": "2.0"
|
||||
}
|
||||
13
api/local.settings.json
Normal file
13
api/local.settings.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"IsEncrypted": false,
|
||||
"Values": {
|
||||
"AzureWebJobsStorage": "",
|
||||
"AZURE_STORAGE_CONNECTION_STRING": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;TableEndpoint=http://localhost:10002/devstoreaccount1;",
|
||||
"FUNCTIONS_WORKER_RUNTIME": "node",
|
||||
"GITHUB_API_USERNAME": "noahspannbauer",
|
||||
"GITHUB_API_PAT": "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"
|
||||
},
|
||||
"Host": {
|
||||
"CORS": "*"
|
||||
}
|
||||
}
|
||||
17
api/main/function.json
Normal file
17
api/main/function.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"bindings": [
|
||||
{
|
||||
"authLevel": "anonymous",
|
||||
"type": "httpTrigger",
|
||||
"direction": "in",
|
||||
"name": "req",
|
||||
"route": "{*segments}"
|
||||
},
|
||||
{
|
||||
"type": "http",
|
||||
"direction": "out",
|
||||
"name": "res"
|
||||
}
|
||||
],
|
||||
"scriptFile": "../dist/main/index.js"
|
||||
}
|
||||
7
api/main/index.ts
Normal file
7
api/main/index.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Context, HttpRequest } from '@azure/functions';
|
||||
import { AzureHttpAdapter } from '@nestjs/azure-func-http';
|
||||
import { createApp } from '../src/main.azure';
|
||||
|
||||
export default function(context: Context, req: HttpRequest): void {
|
||||
AzureHttpAdapter.handle(createApp, context, req);
|
||||
}
|
||||
3
api/main/sample.dat
Normal file
3
api/main/sample.dat
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"name": "Azure"
|
||||
}
|
||||
8
api/nest-cli.json
Normal file
8
api/nest-cli.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/nest-cli",
|
||||
"collection": "@nestjs/schematics",
|
||||
"sourceRoot": "src",
|
||||
"compilerOptions": {
|
||||
"deleteOutDir": true
|
||||
}
|
||||
}
|
||||
80
api/package.json
Normal file
80
api/package.json
Normal file
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"name": "api",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"author": "",
|
||||
"private": true,
|
||||
"license": "UNLICENSED",
|
||||
"scripts": {
|
||||
"build": "nest build",
|
||||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
||||
"start": "nest start",
|
||||
"start:dev": "nest start --watch",
|
||||
"start:debug": "nest start --debug --watch",
|
||||
"start:prod": "node dist/main",
|
||||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"test:cov": "jest --coverage",
|
||||
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
||||
"test:e2e": "jest --config ./test/jest-e2e.json",
|
||||
"start:azure": "npm run build && func host start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@azure/functions": "^1.0.3",
|
||||
"@nestjs/axios": "^4.0.0",
|
||||
"@nestjs/azure-func-http": "^0.10.0",
|
||||
"@nestjs/common": "^10.0.0",
|
||||
"@nestjs/config": "^4.0.0",
|
||||
"@nestjs/core": "^10.0.0",
|
||||
"@nestjs/platform-express": "^10.0.0",
|
||||
"@noahspan/azure-database": "^3.1.2",
|
||||
"@noahspan/noahspan-modules": "^0.5.2",
|
||||
"axios": "^1.7.9",
|
||||
"reflect-metadata": "^0.1.14",
|
||||
"rxjs": "^7.8.1",
|
||||
"uuid": "^11.0.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/schematics": "^19.1.4",
|
||||
"@nestjs/cli": "^10.0.0",
|
||||
"@nestjs/schematics": "^10.0.0",
|
||||
"@nestjs/testing": "^10.0.0",
|
||||
"@schematics/angular": "^19.1.4",
|
||||
"@types/express": "^4.17.17",
|
||||
"@types/jest": "^29.5.2",
|
||||
"@types/node": "^20.3.1",
|
||||
"@types/supertest": "^6.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
||||
"@typescript-eslint/parser": "^6.0.0",
|
||||
"eslint": "^8.42.0",
|
||||
"eslint-config-prettier": "^9.0.0",
|
||||
"eslint-plugin-prettier": "^5.0.0",
|
||||
"jest": "^29.5.0",
|
||||
"prettier": "^3.0.0",
|
||||
"source-map-support": "^0.5.21",
|
||||
"supertest": "^6.3.3",
|
||||
"ts-jest": "^29.1.0",
|
||||
"ts-loader": "^9.4.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"tsconfig-paths": "^4.2.0",
|
||||
"typescript": "^5.1.3"
|
||||
},
|
||||
"jest": {
|
||||
"moduleFileExtensions": [
|
||||
"js",
|
||||
"json",
|
||||
"ts"
|
||||
],
|
||||
"rootDir": "src",
|
||||
"testRegex": ".*\\.spec\\.ts$",
|
||||
"transform": {
|
||||
"^.+\\.(t|j)s$": "ts-jest"
|
||||
},
|
||||
"collectCoverageFrom": [
|
||||
"**/*.(t|j)s"
|
||||
],
|
||||
"coverageDirectory": "../coverage",
|
||||
"testEnvironment": "node"
|
||||
}
|
||||
}
|
||||
4
api/proxies.json
Normal file
4
api/proxies.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/proxies",
|
||||
"proxies": {}
|
||||
}
|
||||
22
api/src/app.controller.spec.ts
Normal file
22
api/src/app.controller.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { AppController } from './app.controller';
|
||||
import { AppService } from './app.service';
|
||||
|
||||
describe('AppController', () => {
|
||||
let appController: AppController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const app: TestingModule = await Test.createTestingModule({
|
||||
controllers: [AppController],
|
||||
providers: [AppService],
|
||||
}).compile();
|
||||
|
||||
appController = app.get<AppController>(AppController);
|
||||
});
|
||||
|
||||
describe('root', () => {
|
||||
it('should return "Hello World!"', () => {
|
||||
expect(appController.getHello()).toBe('Hello World!');
|
||||
});
|
||||
});
|
||||
});
|
||||
17
api/src/app.module.ts
Normal file
17
api/src/app.module.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { GitHubApiModule } from './github/github.module';
|
||||
import { APP_FILTER } from '@nestjs/core';
|
||||
import { HttpExceptionFilter } from './filters/http-exception.filter';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
GitHubApiModule
|
||||
],
|
||||
providers: [
|
||||
{
|
||||
provide: APP_FILTER,
|
||||
useClass: HttpExceptionFilter
|
||||
}
|
||||
]
|
||||
})
|
||||
export class AppModule {}
|
||||
4
api/src/config/configuration.ts
Normal file
4
api/src/config/configuration.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export default () => ({
|
||||
githubApiUsername: process.env.GITHUB_API_USERNAME,
|
||||
githubApiPassword: process.env.GITHUB_API_PAT
|
||||
})
|
||||
25
api/src/filters/http-exception.filter.ts
Normal file
25
api/src/filters/http-exception.filter.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import {
|
||||
ExceptionFilter,
|
||||
Catch,
|
||||
ArgumentsHost,
|
||||
HttpException
|
||||
} from '@nestjs/common';
|
||||
import { Request, Response } from 'express';
|
||||
|
||||
@Catch(HttpException)
|
||||
export class HttpExceptionFilter implements ExceptionFilter {
|
||||
catch(excpetion: HttpException, host: ArgumentsHost) {
|
||||
const ctx = host.switchToHttp();
|
||||
const response = ctx.getResponse<Response>();
|
||||
const request = ctx.getRequest<Request>();
|
||||
const status = excpetion.getStatus();
|
||||
|
||||
response.status(status).json({
|
||||
name: excpetion.cause,
|
||||
message: excpetion.message,
|
||||
statusCode: status,
|
||||
timestamp: new Date().toISOString(),
|
||||
path: request.url
|
||||
});
|
||||
}
|
||||
}
|
||||
20
api/src/github/github-content.interface.ts
Normal file
20
api/src/github/github-content.interface.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
export interface Content {
|
||||
name: string
|
||||
path: string
|
||||
sha: string
|
||||
size: number
|
||||
url: string
|
||||
html_url: string
|
||||
git_url: string
|
||||
download_url: string
|
||||
type: string
|
||||
content: string
|
||||
encoding: string
|
||||
_links: Links
|
||||
}
|
||||
|
||||
interface Links {
|
||||
self: string
|
||||
git: string
|
||||
html: string
|
||||
}
|
||||
120
api/src/github/github-repo.interface.ts
Normal file
120
api/src/github/github-repo.interface.ts
Normal file
@@ -0,0 +1,120 @@
|
||||
export interface Repo {
|
||||
id: number
|
||||
node_id: string
|
||||
name: string
|
||||
full_name: string
|
||||
private: boolean
|
||||
owner: Owner
|
||||
html_url: string
|
||||
description?: string
|
||||
fork: boolean
|
||||
url: string
|
||||
forks_url: string
|
||||
keys_url: string
|
||||
collaborators_url: string
|
||||
teams_url: string
|
||||
hooks_url: string
|
||||
issue_events_url: string
|
||||
events_url: string
|
||||
assignees_url: string
|
||||
branches_url: string
|
||||
tags_url: string
|
||||
blobs_url: string
|
||||
git_tags_url: string
|
||||
git_refs_url: string
|
||||
trees_url: string
|
||||
statuses_url: string
|
||||
languages_url: string
|
||||
stargazers_url: string
|
||||
contributors_url: string
|
||||
subscribers_url: string
|
||||
subscription_url: string
|
||||
commits_url: string
|
||||
git_commits_url: string
|
||||
comments_url: string
|
||||
issue_comment_url: string
|
||||
contents_url: string
|
||||
compare_url: string
|
||||
merges_url: string
|
||||
archive_url: string
|
||||
downloads_url: string
|
||||
issues_url: string
|
||||
pulls_url: string
|
||||
milestones_url: string
|
||||
notifications_url: string
|
||||
labels_url: string
|
||||
releases_url: string
|
||||
deployments_url: string
|
||||
created_at: string
|
||||
updated_at: string
|
||||
pushed_at: string
|
||||
git_url: string
|
||||
ssh_url: string
|
||||
clone_url: string
|
||||
svn_url: string
|
||||
homepage?: string
|
||||
size: number
|
||||
stargazers_count: number
|
||||
watchers_count: number
|
||||
language?: string
|
||||
has_issues: boolean
|
||||
has_projects: boolean
|
||||
has_downloads: boolean
|
||||
has_wiki: boolean
|
||||
has_pages: boolean
|
||||
has_discussions: boolean
|
||||
forks_count: number
|
||||
mirror_url: any
|
||||
archived: boolean
|
||||
disabled: boolean
|
||||
open_issues_count: number
|
||||
license?: License
|
||||
allow_forking: boolean
|
||||
is_template: boolean
|
||||
web_commit_signoff_required: boolean
|
||||
topics: any[]
|
||||
visibility: string
|
||||
forks: number
|
||||
open_issues: number
|
||||
watchers: number
|
||||
default_branch: string
|
||||
permissions: Permissions
|
||||
}
|
||||
|
||||
interface Owner {
|
||||
login: string
|
||||
id: number
|
||||
node_id: string
|
||||
avatar_url: string
|
||||
gravatar_id: string
|
||||
url: string
|
||||
html_url: string
|
||||
followers_url: string
|
||||
following_url: string
|
||||
gists_url: string
|
||||
starred_url: string
|
||||
subscriptions_url: string
|
||||
organizations_url: string
|
||||
repos_url: string
|
||||
events_url: string
|
||||
received_events_url: string
|
||||
type: string
|
||||
user_view_type: string
|
||||
site_admin: boolean
|
||||
}
|
||||
|
||||
interface License {
|
||||
key: string
|
||||
name: string
|
||||
spdx_id: string
|
||||
url: string
|
||||
node_id: string
|
||||
}
|
||||
|
||||
interface Permissions {
|
||||
admin: boolean
|
||||
maintain: boolean
|
||||
push: boolean
|
||||
triage: boolean
|
||||
pull: boolean
|
||||
}
|
||||
35
api/src/github/github.controller.ts
Normal file
35
api/src/github/github.controller.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { Controller, Get, HttpException, Query } from '@nestjs/common';
|
||||
import { GitHubApiService } from './github.service';
|
||||
import { AxiosError } from 'axios'
|
||||
import { Content } from './github-content.interface';
|
||||
import { Repo } from './github-repo.interface';
|
||||
|
||||
@Controller('github')
|
||||
export class GitHubApiController {
|
||||
constructor(private readonly githubApiService: GitHubApiService) {}
|
||||
|
||||
@Get('readme')
|
||||
async getReadMe(@Query() query: any): Promise<Content> {
|
||||
try {
|
||||
const repoName = query['repoName'];
|
||||
|
||||
return await this.githubApiService.getReadMeContent(repoName)
|
||||
} catch (error) {
|
||||
const axiosError = error as AxiosError;
|
||||
|
||||
throw new HttpException(axiosError.message, axiosError.status)
|
||||
}
|
||||
}
|
||||
|
||||
@Get('repos')
|
||||
async getRepos(): Promise<Repo[]> {
|
||||
try {
|
||||
return await this.githubApiService.getRepos();
|
||||
} catch (error) {
|
||||
const axiosError = error as AxiosError
|
||||
|
||||
throw new HttpException(axiosError.message, axiosError.status)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
18
api/src/github/github.module.ts
Normal file
18
api/src/github/github.module.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { GitHubApiController } from './github.controller';
|
||||
import { GitHubApiService } from './github.service';
|
||||
import { ConfigModule } from '@nestjs/config';
|
||||
import configuration from '../config/configuration';
|
||||
import { HttpModule } from '@nestjs/axios';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
ConfigModule.forRoot({
|
||||
load: [configuration]
|
||||
}),
|
||||
HttpModule
|
||||
],
|
||||
controllers: [GitHubApiController],
|
||||
providers: [GitHubApiService],
|
||||
})
|
||||
export class GitHubApiModule {}
|
||||
39
api/src/github/github.service.ts
Normal file
39
api/src/github/github.service.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { ConfigService } from '@nestjs/config';
|
||||
import { HttpService } from '@nestjs/axios';
|
||||
import { AxiosResponse } from 'axios';
|
||||
import { Repo } from './github-repo.interface';
|
||||
import { Content } from './github-content.interface';
|
||||
|
||||
@Injectable()
|
||||
export class GitHubApiService {
|
||||
constructor(
|
||||
private readonly configService: ConfigService,
|
||||
private readonly httpService: HttpService
|
||||
) {}
|
||||
|
||||
async getReadMeContent(repoName: string): Promise<Content> {
|
||||
const githubApiUsername = this.configService.get<string>('githubApiUsername')
|
||||
const response: AxiosResponse = await this.httpService.axiosRef.get(`https://api.github.com/repos/${githubApiUsername}/${repoName}/contents/README.md`, {
|
||||
auth: {
|
||||
username: this.configService.get<string>('githubApiUsername'),
|
||||
password: this.configService.get<string>('githubApiPassword')
|
||||
}
|
||||
})
|
||||
const content: Content = response.data
|
||||
|
||||
return content;
|
||||
}
|
||||
|
||||
async getRepos(): Promise<Repo[]> {
|
||||
const response: AxiosResponse = await this.httpService.axiosRef.get('https://api.github.com/user/repos', {
|
||||
auth: {
|
||||
username: this.configService.get<string>('githubApiUsername'),
|
||||
password: this.configService.get<string>('githubApiPassword')
|
||||
}
|
||||
})
|
||||
const repos: Repo[] = response.data
|
||||
|
||||
return repos;
|
||||
}
|
||||
}
|
||||
26
api/src/main.azure.ts
Normal file
26
api/src/main.azure.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { INestApplication, InternalServerErrorException } from '@nestjs/common';
|
||||
import { NestFactory } from '@nestjs/core';
|
||||
import { AppModule } from './app.module';
|
||||
import { HttpService } from '@nestjs/axios'
|
||||
import { HttpExceptionFilter } from './filters/http-exception.filter';
|
||||
|
||||
export async function createApp(): Promise<INestApplication> {
|
||||
const httpService = new HttpService();
|
||||
const app = await NestFactory.create(AppModule);
|
||||
|
||||
app.setGlobalPrefix('api');
|
||||
app.useGlobalFilters(new HttpExceptionFilter());
|
||||
httpService.axiosRef.interceptors.response.use(
|
||||
(response) => {
|
||||
return response;
|
||||
},
|
||||
(error) => {
|
||||
console.error('Internal server error exception', error);
|
||||
|
||||
throw new InternalServerErrorException();
|
||||
}
|
||||
);
|
||||
|
||||
await app.init();
|
||||
return app;
|
||||
}
|
||||
9
api/src/main.ts
Normal file
9
api/src/main.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { NestFactory } from '@nestjs/core';
|
||||
import { AppModule } from './app.module';
|
||||
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create(AppModule);
|
||||
|
||||
await app.listen(3000);
|
||||
}
|
||||
bootstrap();
|
||||
24
api/test/app.e2e-spec.ts
Normal file
24
api/test/app.e2e-spec.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { INestApplication } from '@nestjs/common';
|
||||
import * as request from 'supertest';
|
||||
import { AppModule } from './../src/app.module';
|
||||
|
||||
describe('AppController (e2e)', () => {
|
||||
let app: INestApplication;
|
||||
|
||||
beforeEach(async () => {
|
||||
const moduleFixture: TestingModule = await Test.createTestingModule({
|
||||
imports: [AppModule],
|
||||
}).compile();
|
||||
|
||||
app = moduleFixture.createNestApplication();
|
||||
await app.init();
|
||||
});
|
||||
|
||||
it('/ (GET)', () => {
|
||||
return request(app.getHttpServer())
|
||||
.get('/')
|
||||
.expect(200)
|
||||
.expect('Hello World!');
|
||||
});
|
||||
});
|
||||
9
api/test/jest-e2e.json
Normal file
9
api/test/jest-e2e.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"moduleFileExtensions": ["js", "json", "ts"],
|
||||
"rootDir": ".",
|
||||
"testEnvironment": "node",
|
||||
"testRegex": ".e2e-spec.ts$",
|
||||
"transform": {
|
||||
"^.+\\.(t|j)s$": "ts-jest"
|
||||
}
|
||||
}
|
||||
4
api/tsconfig.build.json
Normal file
4
api/tsconfig.build.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
|
||||
}
|
||||
21
api/tsconfig.json
Normal file
21
api/tsconfig.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"declaration": true,
|
||||
"removeComments": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"target": "ES2021",
|
||||
"sourceMap": true,
|
||||
"outDir": "./dist",
|
||||
"baseUrl": "./",
|
||||
"incremental": true,
|
||||
"skipLibCheck": true,
|
||||
"strictNullChecks": false,
|
||||
"noImplicitAny": false,
|
||||
"strictBindCallApply": false,
|
||||
"forceConsistentCasingInFileNames": false,
|
||||
"noFallthroughCasesInSwitch": false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user