-
Notifications
You must be signed in to change notification settings - Fork 1
/
resource.js
176 lines (167 loc) · 4.71 KB
/
resource.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
var config = require('../config')
, date = require('datejs');
var associate = function (path, objectType) {
var steps = path.split('/');
var kind = steps[1];
return function (app) {
app.get('/' + kind, list(kind, objectType));
app.post('/' + kind, save(kind, objectType));
app.get(path, get(kind, objectType));
app.post(path, save(kind, objectType));
app.del(path, del(kind, objectType));
app.get('/id' + path, redirectTo(kind, objectType));
};
};
function buildProps (steps, value, props) {
props[steps[0]] = steps.length > 1 ? buildProps(steps.slice(1), value, props[steps[0]] || {}) : value;
return props;
};
function searchObject (req) {
var props = {};
for (var p in req.params) {
props = buildProps(p.split('_'), req.params[p], props);
}
return props;
};
function list (kind, objectType) {
return function (req, res) {
objectType.get({ deleted: null }, config.queryEndpoint, function (err, items) {
res.render(kind + '/index', {
locals: {
pageClass: kind
, items: items
, constraints: objectType.constraints()
}
});
});
};
}
function get (kind, objectType) {
return function (req, res) {
var search = searchObject(req);
var item;
console.log('SEARCHING FOR:');
console.log(search);
objectType.get(search, config.queryEndpoint, function (err, items) {
if (err || items.length === 0) {
res.render('error', {
status: 404,
locals: {
pageClass: 'error'
, title: 'Not Found'
}
});
} else if (items[0].deleted) {
item = items[0];
objectType.get({ deleted: null }, config.queryEndpoint, function (err, items) {
if (err || items.length === 0) {
res.render('error', {
status: 404,
locals: {
pageClass: 'error'
, title: 'Not Found'
}
});
} else {
res.render(kind + '/' + kind, {
locals: {
pageClass: kind
, item: item
, items: items
, constraints: objectType.constraints()
}
});
}
});
} else {
res.render(kind + '/' + kind, {
locals: {
pageClass: kind
, item: items[0]
, constraints: objectType.constraints()
, changed: items[0].modified || items[0].created
}
});
}
});
};
}
function save (kind, objectType) {
return function (req, res) {
var search = searchObject(req);
var props = req.body;
for (var p in search) {
props[p] = search[p];
}
var item = new objectType(props);
item.save(config.queryEndpoint, config.updateEndpoint, function (err, newItem) {
if (err) {
objectType.get({ deleted: null }, config.queryEndpoint, function (err, items) {
res.render(kind + '/index', {
status: 400
, locals: {
pageClass: kind
, items: items
, constraints: objectType.constraints()
, newItem: item
, error: 'Unable to save the ' + kind
}
});
});
} else {
res.redirect(item.relativeUri(), 303);
}
});
};
}
function del (kind, objectType) {
return function (req, res) {
var search = searchObject(req);
var old = new objectType(search);
old.deleted = new Date();
old.save(config.queryEndpoint, config.updateEndpoint, function (err, savedItem) {
if (err) {
res.render('error', {
status: 500
, locals: {
pageClass: 'error'
, title: 'Internal Server Error'
}
});
} else {
objectType.get({ deleted: null }, config.queryEndpoint, function (err, items) {
res.render(kind + '/' + kind, {
locals: {
pageClass: kind
, item: savedItem
, items: items
, constraints: objectType.constraints()
, changed: old.deleted
, message: 'Successfully deleted'
}
});
});
}
});
};
}
function redirectTo (kind, objectType) {
return function (req, res) {
var search = searchObject(req);
var item = new objectType(search);
objectType.get(item, config.queryEndpoint, function (err, items) {
if (err || items.length === 0) {
res.render('error', {
status: 404,
locals: {
pageClass: 'error'
, title: 'Not Found'
}
});
} else {
res.redirect(items[0].relativeUri().replace('/id/', '/'), 303);
}
});
};
}
module.exports.associate = associate;