Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
panzerox123 committed Dec 6, 2020
1 parent 6e22fc8 commit eb561ca
Show file tree
Hide file tree
Showing 57 changed files with 20,934 additions and 0 deletions.
116 changes: 116 additions & 0 deletions project_manager_webtech/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@

# Created by https://www.toptal.com/developers/gitignore/api/node
# Edit at https://www.toptal.com/developers/gitignore?templates=node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env*.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# End of https://www.toptal.com/developers/gitignore/api/node
3 changes: 3 additions & 0 deletions project_manager_webtech/config/default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"private_key" : "Test_key"
}
33 changes: 33 additions & 0 deletions project_manager_webtech/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
const express = require('express');
const mongoose = require('mongoose');
const config = require('config');
const cors = require('cors');
const app = express();
const PORT = process.env.PORT || 8000;

const userRoute = require('./routes/user.route');
const teamsRoute = require('./routes/teams.route');
const tasksRoute = require('./routes/tasks.route');
const { post } = require('./routes/user.route');

app.use(cors({exposedHeaders: ['x-auth-token']}));
app.use(express.json());
app.use(express.urlencoded({extended: true}));

if(!config.get("private_key")){
console.error("Key error");
process.exit(1);
} else {
//console.log("Private key defined");
}


app.get('/', (req,res)=> res.status(200).send(`Node backend for Project Management App running on ${PORT}`));

mongoose.connect('mongodb://localhost/project_manager', {useNewUrlParser: true, useUnifiedTopology: true}).then(()=>console.log("Connected to MongoDB")).catch(err=>{throw err});

app.use('/api/auth', userRoute);
app.use('/api/teams',teamsRoute);
app.use('/api/tasks',tasksRoute);

app.listen(PORT, (console.log(`Server running on port ${PORT}`)));
14 changes: 14 additions & 0 deletions project_manager_webtech/middleware/auth.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const jwt = require('jsonwebtoken');
const config = require('config');

module.exports = (req,res,next) => {
const token = req.headers['x-access-token'] || req.headers['authorization'];
if(!token) return res.status(401).send("Unauthorised");
try{
const decoded = jwt.verify(token,config.get("private_key"));
req.user = decoded;
next();
} catch {
res.status(401).send("Invalid token");
}
}
37 changes: 37 additions & 0 deletions project_manager_webtech/models/tasks.model.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
const mongoose = require('mongoose');

const TaskSchema = new mongoose.Schema({
teamNumber: {
type: String
},
taskName: {
type: String
},
parent:{
type: mongoose.Schema.Types.ObjectId
},
children: {
type: [mongoose.Schema.Types.ObjectId]
},
taskComments: {
type: [mongoose.Schema.Types.ObjectId]
},
taskStatus:{
type: Number
}
})

const CommentSchema = new mongoose.Schema({
commentUser: {
type: String,
},
commentText: {
type: String,
},
})

const Task = mongoose.model('Task', TaskSchema);
const Comment = mongoose.model('Comment', CommentSchema);

exports.Task = Task;
exports.Comment = Comment;
19 changes: 19 additions & 0 deletions project_manager_webtech/models/teams.model.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const mongoose = require('mongoose');

const TeamSchema = new mongoose.Schema({
teamNumber: {
type: String,
unique: true
},
teamName: {
required: true,
type: String
},
tasks: {
type: [mongoose.Schema.Types.ObjectId],
}
});

const Team = mongoose.model('Team',TeamSchema);

exports.Team = Team;
34 changes: 34 additions & 0 deletions project_manager_webtech/models/user.model.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
const mongoose = require('mongoose');
const jwt = require('jsonwebtoken');
const config = require('config');

const UserSchema = new mongoose.Schema(
{
userName: {
required: true,
unique: true,
type: String
},
email: {
required: true,
unique: true,
type: String
},
password: {
required: true,
type: String
},
teams: {
type: [Number]
}
}
);

UserSchema.methods.generateAuthToken = function() {
const token = jwt.sign({_id: this._id}, config.get("private_key"));
return token;
}

const User = mongoose.model('User',UserSchema);

exports.User = User;
Loading

0 comments on commit eb561ca

Please sign in to comment.