Compare commits

...

28 Commits

Author SHA1 Message Date
Kayne Ruse c30cf80fc6 Bumped node to version 16 LTS 2021-11-17 04:42:48 +00:00
Kayne Ruse 62afef402f Updated package-lock.json 2021-11-15 22:39:21 +00:00
Kayne Ruse db61357a0f Updated documentation 2021-08-21 22:45:01 +01:00
Kayne Ruse fd1ba06b45 HOTFIX: Missing data would crash the site 2021-07-25 10:35:13 +01:00
Kayne Ruse 1b9e35539e Update package.json 2021-07-23 20:40:36 +10:00
Kayne Ruse 19a4051159 Updated packages 2021-07-23 19:23:17 +10:00
Kayne Ruse 6fee9090e7 Merged private changes 2021-07-23 19:21:21 +10:00
Kayne Ruse 5c9ee58f41 Updated .dockerignore 2021-07-23 19:12:21 +10:00
Kayne Ruse f56f1e859b Updated packages 2021-07-15 09:24:15 +10:00
Kayne Ruse 8504017cf7 Updated packages 2021-04-28 21:28:29 +10:00
Kayne Ruse 5d61cf3cdc Updated modules 2021-04-20 18:49:53 +10:00
Kayne Ruse 5d721ddea6 Updated .dockerignore 2021-04-16 16:24:58 +10:00
Kayne Ruse 733927966a Added .dockerignore 2021-04-16 13:24:03 +10:00
Kayne Ruse c38f700e93 Tweaked package.json 2021-04-10 04:59:03 +10:00
Kayne Ruse f59fc2e8e0 Tweaked .envdev 2021-04-07 02:44:13 +10:00
Kayne Ruse 70712b9a87 Ripped out unneeded stuff 2021-04-07 02:00:05 +10:00
Kayne Ruse 4ff507b0fa Funky config stuff gives me a headache 2021-04-03 03:26:36 +11:00
Kayne Ruse 7ebced9304 Tweaked Dockerfile 2021-04-03 02:34:40 +11:00
Kayne Ruse 028bcc99dd Tweaked Dockerfile 2021-04-03 02:11:02 +11:00
Kayne Ruse 74869993b0 Formatting errors 2021-04-03 01:59:02 +11:00
Kayne Ruse bac87e9c33 Working on multiplatform things 2021-04-03 01:41:44 +11:00
Kayne Ruse afa35939fa Added docker publishing 2021-04-03 01:05:41 +11:00
Kayne Ruse 1c32e42b47 Updated admin and mod flag system 2021-03-24 08:22:18 +11:00
Kayne Ruse c72c933c0b Updated libraries 2021-03-24 01:52:44 +11:00
Kayne Ruse 3c7add4807 Each microservice has received a tweak to .envdev, read more
This should make it easier to set time zones and enable database logging.

Related to krgamestudios/MERN-template#16
2021-03-22 16:42:45 +11:00
Kayne Ruse 3d73e6d612 Updated README.md 2021-03-14 04:33:49 +11:00
Kayne Ruse da62d64727 Added a nifty flag for debugging 2021-03-11 10:06:04 +11:00
Kayne Ruse 7de1083fdd Finally playing nice together 2021-03-07 15:34:35 +11:00
13 changed files with 357 additions and 403 deletions
+10
View File
@@ -0,0 +1,10 @@
.git*
tools*
mysql*
letsencrypt*
test*
.env*
.github*
LICENSE*
+10 -3
View File
@@ -3,9 +3,16 @@ WEB_PORT=3100
DB_HOSTNAME=database DB_HOSTNAME=database
DB_DATABASE=news DB_DATABASE=news
DB_USERNAME=news DB_USERNAME=news
DB_PASSWORD=charizard DB_PASSWORD=venusaur
# Select a "TZ database name" that suits your needs: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
DB_TIMEZONE=Australia/Sydney DB_TIMEZONE=Australia/Sydney
QUERY_LIMIT=10 # Give this any value to enable database logging (such as "true")
DB_LOGGING=
SECRET_ACCESS=access # Make sure this value matches the system that you connect to
SECRET_ACCESS=access
# Select the default number of articles returned by a GET request
QUERY_LIMIT=10
+1 -10
View File
@@ -1,19 +1,10 @@
FROM node:15
# Change working directory FROM node:16
WORKDIR "/app" WORKDIR "/app"
# Copy package.json and package-lock.json
COPY package*.json ./ COPY package*.json ./
# Install npm production packages
RUN npm install --production RUN npm install --production
COPY . /app COPY . /app
EXPOSE 3100 EXPOSE 3100
USER node USER node
ENTRYPOINT ["bash", "-c"] ENTRYPOINT ["bash", "-c"]
CMD ["sleep 10 && npm start"] CMD ["sleep 10 && npm start"]
+46 -17
View File
@@ -4,12 +4,12 @@ An API centric news server. Uses Sequelize and mariaDB by default.
# Setup # Setup
There are multiple ways to run this app - it can run on it's own via `npm start` (for production) or `npm run dev` (for development). it can also run inside docker using `docker-compose up --build` - run `node configure-script.js` to generate docker-compose.yml. There are multiple ways to run this app - it can run on it's own via `npm start` (for production) or `npm run dev` (for development). it can also run inside docker using `docker-compose up --build` - run `node configure-script.js` to generate docker-compose.yml and startup.sql.
To generate an authorization token, use [auth-server](https://github.com/krgamestudios/auth-server). A public-facing development auth-server is available here (tokens are 10 minutes): To generate an authorization token, use [auth-server](https://github.com/krgamestudios/auth-server). A public-facing development auth-server is available here (tokens are valid for 10 minutes):
``` ```
POST https://dev-auth.eggtrainer.com/auth/login HTTP/1.1 POST https://dev-auth.krgamestudios.com/auth/login HTTP/1.1
Content-Type: application/json Content-Type: application/json
{ {
@@ -25,13 +25,21 @@ Content-Type: application/json
//NOTE: you can add a "limit" query parameter to change the default limit //NOTE: you can add a "limit" query parameter to change the default limit
GET /news?limit=10 GET /news?limit=10
//get latest news, up to a default limit, or specify the index "id"
###
//DOCS: get latest news, up to a default limit, or specify the index "id"
GET /news/:id GET /news/:id
//get the news starting from the beginning, up to a default limit, or specify the index "id"
###
//DOCS: get the news starting from the beginning, up to a default limit, or specify the index "id"
GET /news/archive/:id GET /news/archive/:id
//result (if only a single article is specified, returns just that article rather than an array): //DOCS: result (if only a single article is specified, returns just that article rather than an array):
[ [
{ {
"index": index, //absolute index of the result "index": index, //absolute index of the result
@@ -45,13 +53,21 @@ GET /news/archive/:id
... ...
] ]
//get the latest metadata, up to a default limit, or specify the index "id"
###
//DOCS: get the latest metadata, up to a default limit, or specify the index "id"
GET /news/metadata/:id GET /news/metadata/:id
//get the metadata starting from the beginning, up to a default limit, or specify the index "id"
###
//DOCS: get the metadata starting from the beginning, up to a default limit, or specify the index "id"
GET /news/archive/metadata/:id GET /news/archive/metadata/:id
//result (if only a single article is specified, returns just that article rather than an array): //DOCS: result (if only a single article is specified, returns just that article rather than an array):
[ [
{ {
"index": index, //absolute index of the result "index": index, //absolute index of the result
@@ -64,38 +80,51 @@ GET /news/archive/metadata/:id
... ...
] ]
//send a formatted JSON object, returns new index on success, or error on failure
###
//DOCS: send a formatted JSON object, returns new index on success, or error on failure
POST /news POST /news
Authorization: Bearer XXX Authorization: Bearer XXX
//arguments:
{ {
"title": title //title of the article "title": title //title of the article
"author": author //author of the article "author": author //author of the article
"body": body //body of the article "body": body //body of the article
} }
//result (status 200 on success, otherwise an error status): //DOCS: result (status 200 on success, otherwise an error status):
{ {
"index": index //new index of the article "index": index //new index of the article
} }
//similar to `POST /news`, but allows overwriting an existing article
###
//DOCS: similar to `POST /news`, but allows overwriting an existing article
PATCH /news/:id PATCH /news/:id
Authorization: Bearer XXX Authorization: Bearer XXX
//arguments:
{ {
"title": title //title of the article, optional "title": title //title of the article, optional
"author": author //author of the article, optional "author": author //author of the article, optional
"body": body //body of the article, optional "body": body //body of the article, optional
} }
status 200 on success, otherwise an error status //DOCS: result: status 200 on success, otherwise an error status
//remove an article from the news feed
###
//DOCS: remove an article from the news feed
DELETE /news/:id DELETE /news/:id
Authorization: Bearer XXX Authorization: Bearer XXX
status 200 on success, otherwise an error status //DOCS: result: status 200 on success, otherwise an error status
###
``` ```
+2 -2
View File
@@ -109,7 +109,7 @@ networks:
`; `;
const dockerfile = ` const dockerfile = `
FROM node:15 FROM node:16
WORKDIR "/app" WORKDIR "/app"
COPY package*.json ./ COPY package*.json ./
RUN npm install --production RUN npm install --production
@@ -123,7 +123,7 @@ CMD ["sleep 10 && npm start"]
const sqlfile = ` const sqlfile = `
CREATE DATABASE IF NOT EXISTS ${appName}; CREATE DATABASE IF NOT EXISTS ${appName};
CREATE USER IF NOT EXISTS '${appDBUser}'@'%' IDENTIFIED BY '${appDBPass}'; CREATE USER IF NOT EXISTS '${appDBUser}'@'%' IDENTIFIED BY '${appDBPass}';
GRANT ALL PRIVILEGES ON ${appName}.* TO '${appDBUser}'@'%'; GRANT ALL PRIVILEGES ON ${appName}.* TO '${appDBUser}'@'%';
`; `;
fs.writeFileSync('docker-compose.yml', ymlfile); fs.writeFileSync('docker-compose.yml', ymlfile);
+231 -358
View File
File diff suppressed because it is too large Load Diff
+5 -6
View File
@@ -1,6 +1,6 @@
{ {
"name": "news-server", "name": "news-server",
"version": "1.0.0", "version": "1.2.3",
"description": "An API centric news server. Uses Sequelize and mariaDB by default.", "description": "An API centric news server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js", "main": "server/server.js",
"scripts": { "scripts": {
@@ -19,15 +19,14 @@
}, },
"homepage": "https://github.com/krgamestudios/news-server#readme", "homepage": "https://github.com/krgamestudios/news-server#readme",
"dependencies": { "dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^8.2.0", "dotenv": "^8.6.0",
"express": "^4.17.1", "express": "^4.17.1",
"jsonwebtoken": "^8.5.1", "jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.2", "mariadb": "^2.5.4",
"sequelize": "^6.5.0" "sequelize": "^6.6.5"
}, },
"devDependencies": { "devDependencies": {
"nodemon": "^2.0.7" "nodemon": "^2.0.12"
} }
} }
+1 -1
View File
@@ -4,7 +4,7 @@ const sequelize = new Sequelize(process.env.DB_DATABASE, process.env.DB_USERNAME
host: process.env.DB_HOSTNAME, host: process.env.DB_HOSTNAME,
dialect: 'mariadb', dialect: 'mariadb',
timezone: process.env.DB_TIMEZONE, timezone: process.env.DB_TIMEZONE,
logging: false logging: process.env.DB_LOGGING ? console.log : false
}); });
module.exports = sequelize; module.exports = sequelize;
+3 -3
View File
@@ -25,9 +25,9 @@ const route = async (req, res) => {
//update the data //update the data
await articles.update({ await articles.update({
title: req.body.title, title: req.body.title || record.title,
author: req.body.author, author: req.body.author || record.author,
body: req.body.body, body: req.body.body || record.body,
edits: record.edits + 1 edits: record.edits + 1
}, { }, {
where: { where: {
+1 -1
View File
@@ -23,7 +23,7 @@ router.get('/archive/metadata/:id(\\d+)', query(true, true));
//use middleware to authenticate the rest of the routes //use middleware to authenticate the rest of the routes
router.use(authToken); router.use(authToken);
router.use((req, res, next) => { router.use((req, res, next) => {
if (req.user.privilege == 'administrator') { if (req.user.admin) {
next(); next();
} else { } else {
res.status(403).end(); res.status(403).end();
+13
View File
@@ -1,6 +1,19 @@
const { articles } = require('../database/models'); const { articles } = require('../database/models');
const route = async (req, res) => { const route = async (req, res) => {
//check for missing data
if (!req.body.title) {
return res.status(401).end("Missing title");
}
if (!req.body.author) {
return res.status(401).end("Missing author");
}
if (!req.body.body) {
return res.status(401).end("Missing body");
}
//upsert the data //upsert the data
const [instance, created] = await articles.upsert({ const [instance, created] = await articles.upsert({
title: req.body.title, title: req.body.title,
+1 -2
View File
@@ -5,11 +5,10 @@ require('dotenv').config();
const express = require('express'); const express = require('express');
const app = express(); const app = express();
const server = require('http').Server(app); const server = require('http').Server(app);
const bodyParser = require('body-parser');
const cors = require('cors'); const cors = require('cors');
//config //config
app.use(bodyParser.json()); app.use(express.json());
app.use(cors()); app.use(cors());
//database connection //database connection
+33
View File
@@ -0,0 +1,33 @@
#Query
GET https://dev-news.eggtrainer.com/news HTTP/1.1
###
#Publish
POST https://dev-news.eggtrainer.com/news HTTP/1.1
Content-Type: application/json
Authorization: Bearer
{
"title": "Hello World",
"author": "Kayne Ruse",
"body": "Lorem ipsum."
}
###
#Edit
PATCH https://dev-news.eggtrainer.com/news/1 HTTP/1.1
Content-Type: application/json
Authorization: Bearer
{
"title": "Goodnight World"
}
###
#Delete
DELETE https://dev-news.eggtrainer.com/news/1 HTTP/1.1
Content-Type: application/json
Authorization: Bearer