Skip to content

Commit 85e13a4

Browse files
committed
enhance: Update donation object reference
1 parent 868bd46 commit 85e13a4

23 files changed

+9047
-0
lines changed

.babelrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"presets": [
3+
"es2015",
4+
"stage-2"
5+
],
6+
"plugins": [
7+
"transform-runtime"
8+
]
9+
}

.env.example

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#NODE_ENV=development
2+
#PORT=5000
3+
#API_KEY=zircontechapi
4+
#DB_NAME=globalshare
5+
#DB_TEST_NAME=globalsharetest
6+
#DB_PORT=3306
7+
#DB_HOST=localhost
8+
#DB_USERNAME=will
9+
#DB_PASSWORD=Mustang1!

.eslintrc.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
"extends": "airbnb-base",
3+
"plugins": [
4+
"import"
5+
],
6+
"rules": {
7+
"indent": ["error", 2]
8+
},
9+
"parserOptions": {
10+
"sourceType": "module",
11+
"ecmaVersion": 2017,
12+
"ecmaFeatures": {
13+
"experimentalObjectRestSpread": true
14+
}
15+
}
16+
};

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# IDE
12+
.idea
13+
14+
# OS generated files
15+
.DS_Store
16+
.DS_Store?
17+
._*
18+
.Spotlight-V100
19+
ehthumbs.db
20+
Icon?
21+
Thumbs.db
22+
23+
# Babel ES6 compiles files
24+
dist
25+
26+
# Directory for instrumented libs generated by jscoverage/JSCover
27+
lib-cov
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage
31+
32+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
33+
.grunt
34+
35+
# node-waf configuration
36+
.lock-wscript
37+
38+
# Compiled binary addons (http://nodejs.org/api/addons.html)
39+
build/Release
40+
41+
# Dependency directory
42+
node_modules
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional REPL history
48+
.node_repl_history
49+
50+
# .env
51+
.env
52+
53+
# Gradle ignores for using a gradle build
54+
.gradle
55+
build/nodejs
56+
build/yarn

.sequelizerc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
var path = require('path');
2+
3+
module.exports = {
4+
'config': path.resolve('./src/services/sequelize', 'index.js'),
5+
'migrations-path': path.resolve('./src', 'migrations'),
6+
'models-path': path.resolve('./src/api', 'models')
7+
}

gulpfile.babel.js

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import gulp from 'gulp';
2+
import gulpLoadPlugins from 'gulp-load-plugins';
3+
import path from 'path';
4+
import del from 'del';
5+
import runSequence from 'run-sequence';
6+
7+
const plugins = gulpLoadPlugins();
8+
9+
const paths = {
10+
js: ['./**/*.js', '!dist/**', '!node_modules/**', '!coverage/**'],
11+
nonJs: ['./package.json', './.gitignore', './.env'],
12+
tests: './server/tests/*.js',
13+
};
14+
15+
// Clean up dist and coverage directory
16+
gulp.task('clean', () => del.sync(['dist/**', 'dist/.*', 'coverage/**', '!dist', '!coverage']));
17+
18+
// Copy non-js files to dist
19+
gulp.task('copy', () =>
20+
gulp
21+
.src(paths.nonJs)
22+
.pipe(plugins.newer('dist'))
23+
.pipe(gulp.dest('dist'))
24+
);
25+
26+
// Compile ES6 to ES5 and copy to dist
27+
gulp.task('babel', () =>
28+
gulp
29+
.src([...paths.js, '!gulpfile.babel.js'], { base: '.' })
30+
.pipe(plugins.newer('dist'))
31+
.pipe(plugins.sourcemaps.init())
32+
.pipe(plugins.babel())
33+
.pipe(
34+
plugins.sourcemaps.write('.', {
35+
includeContent: false,
36+
sourceRoot(file) {
37+
return path.relative(file.path, __dirname);
38+
},
39+
})
40+
)
41+
.pipe(gulp.dest('dist'))
42+
);
43+
44+
// Start server with restart on file changes
45+
gulp.task('nodemon', ['copy', 'babel'], () =>
46+
plugins.nodemon({
47+
script: path.join('dist', 'index.js'),
48+
ext: 'js',
49+
ignore: ['node_modules/**/*.js', 'dist/**/*.js'],
50+
tasks: ['copy', 'babel'],
51+
})
52+
);
53+
54+
// gulp serve for development
55+
gulp.task('serve', ['clean'], () => runSequence('nodemon'));
56+
57+
// default task: clean dist, compile js files and copy non-js files.
58+
gulp.task('default', ['clean'], () => {
59+
runSequence(['copy', 'babel']);
60+
});

index.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// require('babel-core/register');
2+
3+
// exports = module.exports = require('./src/app');
4+
5+
import { env, port } from './src/config';
6+
import app from './src/services/express';
7+
// import db from './config/sequelize';
8+
9+
// module.parent check is required to support mocha watch
10+
if (!module.parent) {
11+
app.listen(port, () => {
12+
console.info(`server started on port ${port} (${env})`); // eslint-disable-line
13+
});
14+
}
15+
16+
export default app;

package.json

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
{
2+
"name": "globalshare-blockchain-api",
3+
"version": "0.1.0",
4+
"description": "Node JS Blockchain API",
5+
"author": "Will Olivera <[email protected]>",
6+
"main": "index.js",
7+
"engines": {
8+
"node": ">=8.10.0",
9+
"npm": ">=5.6.0",
10+
"yarn": ">=1.5.1"
11+
},
12+
"scripts": {
13+
"start": "gulp serve",
14+
"build": "gulp",
15+
"copy": "gulp copy",
16+
"babel": "gulp babel",
17+
"lint": "esw *.js server config --color",
18+
"lint:watch": "yarn lint -- --watch",
19+
"beautify": "es-beautifier -u -c .eslintrc.js *.js server config",
20+
"precommit": "yarn lint && yarn test",
21+
"test": "cross-env NODE_ENV=test ./node_modules/.bin/jest server/tests",
22+
"test:watch": "jest --watch",
23+
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _jest -- --ui bdd --reporter spec --colors --compilers js:babel-core/register server/tests --recursive",
24+
"test:check-coverage": "yarn test:coverage && istanbul check-coverage",
25+
"report-coverage": "coveralls < ./coverage/lcov.info",
26+
"sequelize": "NODE_ENV=development ./node_modules/.bin/babel-node ./node_modules/.bin/sequelize",
27+
"db:migrate": "npm run sequelize db:migrate"
28+
},
29+
"jest": {
30+
"automock": false,
31+
"bail": false,
32+
"verbose": false,
33+
"setupFiles": [],
34+
"testMatch": [
35+
"**/Tests/**/*.js",
36+
"**/?(*.)(spec|test|integration).js?(x)"
37+
],
38+
"testPathIgnorePatterns": [
39+
"/node_modules/",
40+
"/coverage/",
41+
"/dist/"
42+
],
43+
"testEnvironment": "node"
44+
},
45+
"dependencies": {
46+
"babel-core": "6.24.0",
47+
"babel-plugin-transform-runtime": "^6.23.0",
48+
"babel-register": "^6.26.0",
49+
"babel-runtime": "^6.26.0",
50+
"body-parser": "1.15.2",
51+
"compression": "1.6.2",
52+
"cookie-parser": "1.4.3",
53+
"cors": "2.8.1",
54+
"debug": "^2.4.5",
55+
"del": "^2.2.0",
56+
"dotenv-safe": "^4.0.3",
57+
"express": "4.14.0",
58+
"express-jwt": "5.1.0",
59+
"express-validation": "1.0.1",
60+
"express-winston": "2.1.2",
61+
"gulp": "3.9.0",
62+
"gulp-load-plugins": "^1.2.0",
63+
"helmet": "3.1.0",
64+
"http-status": "^0.2.0",
65+
"joi": "10.0.6",
66+
"jsonwebtoken": "7.1.9",
67+
"lodash": "4.17.10",
68+
"method-override": "^2.3.5",
69+
"morgan": "1.7.0",
70+
"mysql": "^2.13.0",
71+
"mysql2": "^1.6.1",
72+
"run-sequence": "^1.1.5",
73+
"sequelize": "4.38.0",
74+
"sequelize-cli": "^5.2.0",
75+
"supertest": "2.0.1",
76+
"supertest-as-promised": "4.0.2",
77+
"winston": "2.3.0"
78+
},
79+
"devDependencies": {
80+
"babel-cli": "6.24.0",
81+
"babel-plugin-add-module-exports": "0.2.1",
82+
"babel-plugin-transform-object-rest-spread": "6.26.0",
83+
"babel-preset-es2015": "6.24.1",
84+
"babel-preset-stage-2": "6.18.0",
85+
"commitizen": "^2.9.2",
86+
"coveralls": "^2.11.6",
87+
"cross-env": "3.1.3",
88+
"eslint": "3.16.1",
89+
"eslint-config-airbnb-base": "7.1.0",
90+
"eslint-plugin-import": "1.16.0",
91+
"eslint-watch": "2.1.14",
92+
"gulp-babel": "6.1.2",
93+
"gulp-newer": "^1.1.0",
94+
"gulp-nodemon": "^2.0.6",
95+
"gulp-sourcemaps": "^1.6.0",
96+
"gulp-util": "^3.0.7",
97+
"husky": "^0.13.1",
98+
"istanbul": "1.1.0-alpha.1",
99+
"jest": "23.4.2"
100+
},
101+
"babel": {
102+
"presets": [
103+
"es2015",
104+
"stage-2"
105+
],
106+
"plugins": [
107+
"add-module-exports",
108+
"transform-object-rest-spread"
109+
],
110+
"ignore": [
111+
"build/yarn/**/*.js",
112+
"build/nodejs/**/*.js"
113+
]
114+
}
115+
}

src/api/controllers/document.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import db from '../../services/sequelize';
2+
3+
const { Document } = db;
4+
5+
const list = async (req, res, next) => {
6+
try {
7+
const { limit = 50, offset = 0 } = req.query;
8+
const documents = await Document.findAll({ limit, offset });
9+
res.json(documents);
10+
} catch (err) {
11+
next(err);
12+
}
13+
};
14+
15+
export default { list };

src/api/controllers/index.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import documentCtrl from './document';
2+
3+
export default {
4+
documentCtrl,
5+
};

src/api/helpers/APIError.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import httpStatus from 'http-status';
2+
3+
/**
4+
* @extends Error
5+
*/
6+
class ExtendableError extends Error {
7+
constructor(message, status, isPublic) {
8+
super(message);
9+
this.name = this.constructor.name;
10+
this.message = message;
11+
this.status = status;
12+
this.isPublic = isPublic;
13+
Error.captureStackTrace(this, this.constructor.name);
14+
}
15+
}
16+
17+
/**
18+
* Class representing an API error.
19+
* @extends ExtendableError
20+
*/
21+
class APIError extends ExtendableError {
22+
/**
23+
* Creates an API error.
24+
* @param {string} message - Error message.
25+
* @param {number} status - HTTP status code of error.
26+
* @param {boolean} isPublic - Whether the message should be visible to user or not.
27+
*/
28+
constructor(message, status = httpStatus.INTERNAL_SERVER_ERROR, isPublic = false) {
29+
super(message, status, isPublic);
30+
}
31+
}
32+
33+
export default APIError;

0 commit comments

Comments
 (0)