Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Progress CRUD: Seed Data & Create Controllers #5

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
109 changes: 108 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,108 @@
# mongodb-crud
# mongodb-crud

## Running:
> sudo service mongod start <br>
> connection @robomongo <br>
> mongo <br>
> npm run dev

## **Usage**
Menu URL
http://localhost:3000

Find All Books (GET) : /books

Find By ISBN (GET) : /book/search?isbn=

Create Book (POST) : /book

Update Book (PUT) : /book/:isbn

Delete Book (DELETE) : /book/:isbn

Find All Customers (GET) : /customers

Find By Member ID (GET) : /customer/search?memberid=

Create Member (POST) : /customer

Update Member (PUT) : /customer/:memberid

Delete Member (DELETE) : /customer/:memberid

Find All Transaction (GET) : /transactions

Find By ID (GET) : /transaction/search?id=

Create Transaction (POST) : /transaction

Update Transaction (PUT) : /transaction/:id

Delete Transaction (DELETE) : /transaction/:id

## Using Seed

Seed books (GET) : /seeds/books
Seed customers (GET) : /seeds/customers
Seed transactions (GET) : /seeds/transactions

## Create Schema
1. use library
2. db.createCollection("books")
3. db.createCollection("transactions")
4. db.books.insert([
{
isbn: '978-1-60309-057-5',
title: 'Dragon Puncher',
author: 'James Kochalka',
category: 'All Ages',
stock: 3
},
{
isbn: '978-1-891830-77-8',
title: 'Every Girl is the End of the World for Me',
author: 'Jeffrey Brown',
category: 'Mature (16+)',
stock: 5
}
])
5. db.getCollection('books').find({})
6. db.transactions.insert([
{
memberid: 'CL0001',
days: 6,
outdate: ISODate("2016-04-19T14:56:59.301Z"),
duedate: ISODate("2016-04-25T14:56:59.301Z"),
indate: ISODate("2016-04-27T14:56:59.301Z"),
fine: 2000,
booklist:
[
{
"$ref": "books",
"$isbn": "978-1-60309-057-5",
"$db": "academic"
},
{
"$ref": "books",
"$isbn": "978-1-891830-77-8",
"$db": "academic"
}
]
}
])
7. db.customers.insert([
{
name: 'Isumi Karina',
memberid: 'CL0001',
address: 'Jakarta',
zipcode: '10340',
phone: '08159070289'
},
{
name: 'Aiko Diandra',
memberid: 'CL0002',
address: 'Bandung',
zipcode: '12345',
phone: '081234567'
}
])
51 changes: 51 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');

var index = require('./routes/index');
var users = require('./routes/users');
var seed = require('./routes/seed');

var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/library')

var app = express();

// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');

// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));

app.use('/', index);
app.use('/users', users);
app.use('/seeds', seed);

// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});

// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};

// render the error page
res.status(err.status || 500);
res.render('error');
});

module.exports = app;
90 changes: 90 additions & 0 deletions bin/www
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
#!/usr/bin/env node

/**
* Module dependencies.
*/

var app = require('../app');
var debug = require('debug')('mongodb-crud:server');
var http = require('http');

/**
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || '3000');
app.set('port', port);

/**
* Create HTTP server.
*/

var server = http.createServer(app);

/**
* Listen on provided port, on all network interfaces.
*/

server.listen(port);
server.on('error', onError);
server.on('listening', onListening);

/**
* Normalize a port into a number, string, or false.
*/

function normalizePort(val) {
var port = parseInt(val, 10);

if (isNaN(port)) {
// named pipe
return val;
}

if (port >= 0) {
// port number
return port;
}

return false;
}

/**
* Event listener for HTTP server "error" event.
*/

function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}

var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;

// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}

/**
* Event listener for HTTP server "listening" event.
*/

function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
}
74 changes: 74 additions & 0 deletions controller/controllerBooks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
'use strict'
var Book = require('../models/book.js');

module.exports = {

findAllBooks : function(req, res, next) {
Book.find({}, function(err, books){
if (err) {
res.send(err)
} else {
res.send(books)
}
})
},

findByIsbn : function(req, res, next) {
Book.find(
{
isbn: req.query.isbn
}, function(err, books){
if (err) {
res.send(err)
} else {
res.send(books);
}
})
},

createBook : function(req, res, next) {
var newBook = Book(
{
isbn: req.body.isbn,
title: req.body.title,
author: req.body.author,
category: req.body.category,
stock: req.body.stock
})

newBook.save(function(err){
if (err) {
res.send(err)
} else {
res.send(`${req.body.title} has been created`)
}
})
},

updateBook : function(req, res, next) {
Book.findOneAndUpdate(
{
isbn: req.params.isbn
}, req.body, {new : true}, function(err, books){
if (err) {
res.send(err)
} else {
res.send(books);
}
})
},

deleteBook : function(req, res, next) {
Book.findOneAndRemove(
{
isbn: req.params.isbn
}, function(err){
if (err) {
res.send(err)
} else {
res.send(`Book: ${req.params.isbn} has been removed`)
}
})
}

}
Loading