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

My solution #7

Open
wants to merge 21 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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
npm-debug.log
Binary file not shown.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# project_what_have_you_done
Build an application to help track the legislative activities of your local representatives.

## [View App Here](http://find-my-rep.herokuapp.com/)
46 changes: 46 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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');
let legislators = require('./routes/legislators')

var app = express();

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

// 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('/legislators', legislators)

// 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')('project-what-have-you-done: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);
}
14 changes: 14 additions & 0 deletions models/legislators.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class Legistlator {
constructor(id, img, name, chamber, party, phone, website, votes) {
this.id = id
this.img = img
this.name = name
this.chamber = chamber
this.party = party
this.phone = phone
this.website = website
this.votes = votes
}
}

module.exports = Legistlator
11 changes: 11 additions & 0 deletions models/votes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class Vote {
constructor(bill_id, official_title, url, question, vote){
this.bill_id = bill_id
this.official_title = official_title
this.url = url
this.question = question
this.vote = vote
}
}

module.exports = Vote
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "project-what-have-you-done",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"express": "~4.15.2",
"hbs": "~4.0.1",
"morgan": "~1.8.1",
"request": "^2.81.0",
"serve-favicon": "~2.4.2"
}
}
59 changes: 59 additions & 0 deletions public/stylesheets/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions public/stylesheets/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions routes/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
var express = require('express');
var router = express.Router();

const sunlightAPI = require('../utils/api')
const Legistlator = require('../models/legislators')

router.post('/', function(req, res, next) {
if (!(/^\d{5}(?:[-\s]\d{4})?$/.test(req.body.zip))) {
console.log('error out')
res.render('index')
} else {
const zip = req.body.zip

sunlightAPI.getLegistlatorByZip(zip)
.then((legislators) => {
res.render('legislatorList', {legislators: legislators, zip: zip});
})
.catch((err) => {
console.error(err)
res.send(err)
})
}
});

router.get('/', function(req, res, next) {
console.log('error?')
res.render('index', {title: 'Express'});
});

module.exports = router;
31 changes: 31 additions & 0 deletions routes/legislators.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
var express = require('express');
var router = express.Router();

const sunlightAPI = require('../utils/api')

/* GET legislator info by id */
router.get('/:id', function(req, res, next) {
const id = req.params.id
let data = []

let legislator = sunlightAPI.getLegislatorByID(id)
let votes = sunlightAPI.getRecentVotesByID(id)

Promise.all([legislator, votes])
.then((results) => {
let legislatorObj = {
legislator: results[0],
votes: results[1]
}
return legislatorObj
})
.then((results) => {
res.render('legislator', {legislator: results.legislator, votes: results.votes})
})
.catch((err) => {
console.error(err)
})

});

module.exports = router;
Loading