-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
60 lines (48 loc) · 1.78 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* All code (c) 2011 CharityClick.net all rights reserved
*/
var app, express;
express = require("express");
app = module.exports = express.createServer();
app.configure(function () {
app.set("views", __dirname + "/views");
app.set("view engine", "jade");
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser('session'));
app.use(app.router);
return app.use(express.static(__dirname + "/public"));
});
app.configure("development", function () {
return app.use(express.errorHandler({
dumpExceptions:true,
showStack:true
}));
});
app.configure("production", function () {
return app.use(express.errorHandler());
});
var index = require('./routes/index.js')();
var charity = require('./routes/charity.js')();
var charities = require('./routes/charities.js');
app.all("*", index.session);
app.get("/", index.index);
app.get("/index", index.index);
app.get("/aboutus", index.aboutus);
app.get("/contact", index.contact);
app.get(/^\/login(\/error)?$/, index.loginView);
app.post("/login", index.login);
app.get("/charity/register", charity.register);
app.get("/charity/:id", charity.view);
app.get("/charity/:id/donate", charity.donate);
app.get("/charity/:id/information", charity.information);
app.get("/charity/:id/update", charity.updateView);
app.post("/charity/:id/update", charity.update);
app.post("/charity/register", charity.newCharity);
app.get("/admin/charities", charities.manageView);
app.get("/admin/charity_list.json", charities.manageList);
app.post("/admin/charity/update", charities.update);
app.get("/charities.json", charities.jsonList);
var port = process.env.PORT || 3000;
app.listen(port);
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);