Compare commits
26 Commits
cb44eb1fab
...
release/0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
4ed4b6e5f4
|
|||
|
4499e20e77
|
|||
|
c8b1b72694
|
|||
|
73cd1d794a
|
|||
|
28ac23d8f2
|
|||
|
71b7519a53
|
|||
|
28ee1a9d1e
|
|||
|
f327c6e06e
|
|||
|
799ff00f9c
|
|||
|
369e3f4b5c
|
|||
|
3788de2609
|
|||
|
0f9aafe418
|
|||
|
13b90e9ee6
|
|||
|
6e19a6217d
|
|||
|
34fd4e7304
|
|||
|
5e04012aa4
|
|||
|
e8f2928543
|
|||
|
91a3b2fabf
|
|||
|
964b9a03ef
|
|||
|
bf693645d4
|
|||
|
082b4826c2
|
|||
|
e68c3002d8
|
|||
|
30d2f4a644
|
|||
|
875a45f2b8
|
|||
|
6bf7afbe09
|
|||
|
5c94dbbff5
|
292
.drone.yml
292
.drone.yml
@@ -1,70 +1,69 @@
|
|||||||
# kind: pipeline
|
kind: pipeline
|
||||||
# type: docker
|
type: docker
|
||||||
# name: Test Pipeline
|
name: Test Pipeline
|
||||||
|
|
||||||
# workspace:
|
workspace:
|
||||||
# path: /drone/grow
|
path: /drone/grow
|
||||||
|
|
||||||
# steps:
|
steps:
|
||||||
# - name: yarn install
|
- name: yarn install
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn install
|
- yarn install
|
||||||
# - name: Code Style Checks
|
- name: Code Style Checks
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn prettier
|
- yarn prettier
|
||||||
# - name: Lint
|
- name: Lint
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn lint
|
- yarn lint
|
||||||
# - name: Unit Tests
|
- name: Unit Tests
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn test
|
- yarn test
|
||||||
# - name: Send Test Status Notification
|
- name: Send Test Status Notification
|
||||||
# image: plugins/webhook
|
image: plugins/webhook
|
||||||
# settings:
|
settings:
|
||||||
# urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
||||||
# content_type: application/json
|
content_type: application/json
|
||||||
# template: |
|
template: |
|
||||||
# {
|
{
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Code Quality Checks {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
"text": "[{{ repo.name }} - Build # {{ build.number }}] Code Quality Checks {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# "username":"DroneBot"
|
"username":"DroneBot"
|
||||||
# }
|
}
|
||||||
# when:
|
when:
|
||||||
# status:
|
status:
|
||||||
# - success
|
- success
|
||||||
# - failure
|
- failure
|
||||||
# - name: Build
|
- name: Build
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn build
|
- yarn build
|
||||||
# - name: Send Build Status Notifications
|
- name: Send Build Status Notifications
|
||||||
# image: plugins/webhook
|
image: plugins/webhook
|
||||||
# settings:
|
settings:
|
||||||
# urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
||||||
# content_type: application/json
|
content_type: application/json
|
||||||
# template: |
|
template: |
|
||||||
# {
|
{
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Build package {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
"text": "[{{ repo.name }} - Build # {{ build.number }}] Build package {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# "username":"DroneBot"
|
"username":"DroneBot"
|
||||||
# }
|
}
|
||||||
# when:
|
when:
|
||||||
# status:
|
status:
|
||||||
# - success
|
- success
|
||||||
# - failure
|
- failure
|
||||||
|
|
||||||
# trigger:
|
trigger:
|
||||||
# branch:
|
branch:
|
||||||
# - main
|
- main
|
||||||
# event:
|
event:
|
||||||
# # - pull_request
|
- pull_request
|
||||||
# - push
|
|
||||||
|
|
||||||
# ---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: Publish Pipeline
|
name: Publish Pipeline
|
||||||
@@ -79,16 +78,10 @@ steps:
|
|||||||
- yarn install
|
- yarn install
|
||||||
- yarn build
|
- yarn build
|
||||||
- name: Publish NPM
|
- name: Publish NPM
|
||||||
image: plugins/npm
|
image: node:20-alpine
|
||||||
failure: ignore
|
failure: ignore
|
||||||
settings:
|
commands:
|
||||||
username:
|
- yarn publish -t ${DRONE_TAG}
|
||||||
from_secret: registry_username
|
|
||||||
password:
|
|
||||||
from_secret: registry_password
|
|
||||||
registry: https://git.mifi.dev/api/packages/mifi/npm
|
|
||||||
token:
|
|
||||||
- from_secret: gitea_token
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: npmrc
|
- name: npmrc
|
||||||
path: /drone/grow/.npmrc
|
path: /drone/grow/.npmrc
|
||||||
@@ -108,21 +101,18 @@ steps:
|
|||||||
- success
|
- success
|
||||||
- failure
|
- failure
|
||||||
- name: Publish Image
|
- name: Publish Image
|
||||||
image: docker
|
image: plugins/docker
|
||||||
environemnt:
|
settings:
|
||||||
USERNAME:
|
auto_tag: true
|
||||||
from_secret: registry_username
|
repo: git.mifi.dev/mifi/mifi/auth
|
||||||
PASSWORD:
|
registry: git.mifi.dev
|
||||||
from_secret: registry_password
|
debug: true
|
||||||
commands:
|
ssh-agent-key:
|
||||||
- 'docker login git.mifi.dev'
|
from_secret: reg_token
|
||||||
- 'docker build -t git.mifi.dev/mifi/mifi/auth:latest -t git.mifi.dev/mifi/mifi/auth:${DRONE_TAG} .'
|
username: <token>
|
||||||
- docker push git.mifi.dev/mifi/mifi/auth:latest
|
password:
|
||||||
volumes:
|
from_secret: reg_token
|
||||||
- name: dockersock
|
secrets: [reg_token]
|
||||||
path: /var/run/docker.sock
|
|
||||||
- name: dockerconfig
|
|
||||||
path: /drone/grow/.docker/config.json
|
|
||||||
- name: Report Image Publish Status
|
- name: Report Image Publish Status
|
||||||
image: plugins/webhook
|
image: plugins/webhook
|
||||||
settings:
|
settings:
|
||||||
@@ -150,79 +140,73 @@ volumes:
|
|||||||
host:
|
host:
|
||||||
path: /volume1/docker/beethoven/labs-auth/.npmrc
|
path: /volume1/docker/beethoven/labs-auth/.npmrc
|
||||||
|
|
||||||
# depends_on:
|
depends_on:
|
||||||
# - Test Pipeline
|
- Test Pipeline
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
event:
|
||||||
- push
|
- tag
|
||||||
# - tag
|
|
||||||
|
|
||||||
# ---
|
---
|
||||||
# kind: pipeline
|
kind: pipeline
|
||||||
# type: docker
|
type: docker
|
||||||
# name: Deploy Pipeline
|
name: Deploy Pipeline
|
||||||
|
|
||||||
# workspace:
|
workspace:
|
||||||
# path: /drone/grow
|
path: /drone/grow
|
||||||
|
|
||||||
# steps:
|
steps:
|
||||||
# - name: Deploy Container
|
- name: Deploy Container
|
||||||
# image: docker
|
image: docker
|
||||||
# privileged: true
|
privileged: true
|
||||||
# environment:
|
environment:
|
||||||
# CONTAINER_PREFIX: staging
|
CONTAINER_PREFIX: staging
|
||||||
# HOST: area51.mifi.dev
|
HOST: area51.mifi.dev
|
||||||
# ROUTE_PREFIX: /auth
|
ROUTE_PREFIX: /auth
|
||||||
# PORT: 9001
|
PORT: 9001
|
||||||
# commands:
|
commands:
|
||||||
# - docker compose -f docker-compose.staging.yml pull
|
- docker compose -f docker-compose.staging.yml pull
|
||||||
# - docker compose -f docker-compose.staging.yml build --no-cache
|
- docker compose -f docker-compose.staging.yml build --no-cache
|
||||||
# - docker compose -f docker-compose.staging.yml rm --stop
|
- docker compose -f docker-compose.staging.yml rm --stop
|
||||||
# - docker compose -f docker-compose.staging.yml up --wait
|
- docker compose -f docker-compose.staging.yml up --wait
|
||||||
# volumes:
|
volumes:
|
||||||
# - name: env-secrets
|
- name: env-secrets
|
||||||
# path: /drone/grow/staging.env
|
path: /drone/grow/staging.env
|
||||||
# - name: dockersock
|
- name: dockersock
|
||||||
# path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
# - name: dockerconfig
|
- name: dockerconfig
|
||||||
# path: /drone/grow/.docker/config.json
|
path: /drone/grow/.docker/config.json
|
||||||
# - name: Send Status Notifications
|
- name: Send Status Notifications
|
||||||
# image: plugins/webhook
|
image: plugins/webhook
|
||||||
# privileged: true
|
privileged: true
|
||||||
# settings:
|
settings:
|
||||||
# urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
||||||
# content_type: application/json
|
content_type: application/json
|
||||||
# template: |
|
template: |
|
||||||
# {
|
{
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
"text": "[{{ repo.name }} - Build # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# "username":"DroneBot"
|
"username":"DroneBot"
|
||||||
# }
|
}
|
||||||
# when:
|
when:
|
||||||
# status:
|
status:
|
||||||
# - success
|
- success
|
||||||
# - failure
|
- failure
|
||||||
|
|
||||||
# volumes:
|
volumes:
|
||||||
# - name: dockerconfig
|
- name: dockerconfig
|
||||||
# host:
|
host:
|
||||||
# path: /volume1/docker/dockerconfig.json
|
path: /volume1/docker/dockerconfig.json
|
||||||
# - name: dockersock
|
- name: dockersock
|
||||||
# host:
|
host:
|
||||||
# path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
# - name: env-secrets
|
- name: env-secrets
|
||||||
# host:
|
host:
|
||||||
# path: /volume1/docker/beethoven/labs-auth/staging.env
|
path: /volume1/docker/beethoven/labs-auth/staging.env
|
||||||
|
|
||||||
# # depends_on:
|
depends_on:
|
||||||
# # - Test Pipeline
|
- Test Pipeline
|
||||||
|
|
||||||
# trigger:
|
trigger:
|
||||||
# branch:
|
event:
|
||||||
# - main
|
- promote
|
||||||
# event:
|
|
||||||
# - push
|
|
||||||
# # - tag
|
|
||||||
|
|||||||
@@ -5,14 +5,14 @@ COPY tsconfig.json ./
|
|||||||
COPY lib ./lib
|
COPY lib ./lib
|
||||||
RUN ls -a
|
RUN ls -a
|
||||||
RUN yarn install
|
RUN yarn install
|
||||||
RUN yarn build:production
|
RUN yarn build
|
||||||
|
|
||||||
## this is stage two , where the app actually runs
|
## this is stage two , where the app actually runs
|
||||||
FROM node:20-alpine AS containerize
|
FROM node:20-alpine AS containerize
|
||||||
|
ENV NODE_ENV ${ENV:-production}
|
||||||
WORKDIR /home/node/app
|
WORKDIR /home/node/app
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
RUN yarn install --frozen-lockfile --production
|
RUN yarn install --frozen-lockfile --production
|
||||||
COPY --from=0 /home/node/app/dist .
|
COPY --from=0 /home/node/app/dist .
|
||||||
EXPOSE 9001
|
EXPOSE ${PORT}
|
||||||
EXPOSE 27017
|
|
||||||
CMD ["node","server/index.js"]
|
CMD ["node","server/index.js"]
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ services:
|
|||||||
- docknet
|
- docknet
|
||||||
volumes:
|
volumes:
|
||||||
- '/volume1/docker/labs/auth/mongo:/data/db'
|
- '/volume1/docker/labs/auth/mongo:/data/db'
|
||||||
|
# - ./mongo-init.js:/docker-entrypoint-initdb.d/mongo-init.js:ro
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: mongo:latest
|
image: mongo:latest
|
||||||
auth-service:
|
auth-service:
|
||||||
@@ -16,6 +17,8 @@ services:
|
|||||||
- staging.env
|
- staging.env
|
||||||
build: .
|
build: .
|
||||||
container_name: ${CONTAINER_PREFIX}-auth-service
|
container_name: ${CONTAINER_PREFIX}-auth-service
|
||||||
|
environment:
|
||||||
|
- DB_HOST=${CONTAINER_PREFIX}-auth-service_mongo
|
||||||
labels:
|
labels:
|
||||||
- 'traefik.enable=true'
|
- 'traefik.enable=true'
|
||||||
- 'traefik.http.routers.grow.rule=Host(`${HOST}`) && Path(`${ROUTE_PREFIX}`)'
|
- 'traefik.http.routers.grow.rule=Host(`${HOST}`) && Path(`${ROUTE_PREFIX}`)'
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import Auth from '../../db/model/auth';
|
|||||||
import { sign } from '../../utils/jwt';
|
import { sign } from '../../utils/jwt';
|
||||||
import passport from '../passport';
|
import passport from '../passport';
|
||||||
import { ErrorCodes, getErrorBody } from '../../constants/errors';
|
import { ErrorCodes, getErrorBody } from '../../constants/errors';
|
||||||
|
import { authenticated } from '../middleware/authenication';
|
||||||
|
|
||||||
const routerOpts: Router.IRouterOptions = { prefix };
|
const routerOpts: Router.IRouterOptions = { prefix };
|
||||||
const router: Router = new Router(routerOpts);
|
const router: Router = new Router(routerOpts);
|
||||||
@@ -43,7 +44,7 @@ router.post(process.env.RESET_ROUTE || RESET_ROUTE, async (ctx, next) => {
|
|||||||
ctx.body = { success: false, ...getErrorBody(ErrorCodes.RESET_REQUEST_DATA) };
|
ctx.body = { success: false, ...getErrorBody(ErrorCodes.RESET_REQUEST_DATA) };
|
||||||
});
|
});
|
||||||
|
|
||||||
router.patch('/:record', (ctx: Koa.Context) => {
|
router.patch('/:record', authenticated(), (ctx: Koa.Context) => {
|
||||||
const data = Auth.findOneAndUpdate({ record: ctx.params.record });
|
const data = Auth.findOneAndUpdate({ record: ctx.params.record });
|
||||||
if (!data) {
|
if (!data) {
|
||||||
ctx.throw(StatusCodes.NOT_FOUND);
|
ctx.throw(StatusCodes.NOT_FOUND);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@mifi/auth",
|
"name": "@mifi/auth",
|
||||||
"version": "0.0.34",
|
"version": "0.0.37",
|
||||||
"author": "mifi (Mike Fitzpatrick)",
|
"author": "mifi (Mike Fitzpatrick)",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user