forked from sclorg/nodejs-ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotoModule.js
345 lines (324 loc) · 10.8 KB
/
photoModule.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
function photoModule(){
var that = this;
var fs = require('fs');
that.fs = fs;
var database = require('./database');
that.photoDir = "../../../teamuniformdata";
that.photoFilePath = that.photoDir + "/photo";
that.serverAddress = "http://teamuniform-teamuniform.7e14.starter-us-west-2.openshiftapps.com";
console.log("Photos are in %s, this folder exists: "+fs.existsSync(that.photoDir), that.photoDir);
/**
* Finds the path and id of a photo file belonging to the given photo id and executes the callback function on the result
*/
that.findPhotoPathId = function(id, callback){
if(id == "defaultVenue" || id == "defaultUser"){
callback({
id: id,
format: ".jpg",
path: id + ".jpg"
});
} else {
database.connection.query("SELECT * FROM photo WHERE id=?", [id], function(err, rows, fields){
if(!err){
for(var i=0; i<rows.length; i++){
var photo = {
id: rows[i].id,
format: rows[i].format,
path: rows[i].path + rows[i].id + rows[i].format
}
callback(photo);
return;
}
} else {
console.log("Error querying DB for photo");
}
callback(null);
});
}
};
/**
* Reads the photo file that is located at the given path and executes the callback on the file data
*/
that.findPhotoFile = function(path, callback){
fs.readFile(path, function(err, data){
if(!err) {
callback(data);
} else {
console.log(err);
callback(null);
}
})
};
/**
* Retrieves the URL addresses of all photos that belong to a venue (defined by id) and executes the callback function on them
*/
that.findPhotosOfVenue = function(id, callback){
database.connection.query("SELECT * FROM venue_has_picture LEFT JOIN photo ON (photo.id = venue_has_picture.photoID) WHERE venueID=?", [id], function(err, rows, fields){
if(!err){
var photos = [];
for(var i=0; i<rows.length; i++){
var photoURL = that.serverAddress+"/photos/"+rows[i].id;
photos.push(photoURL);
}
if(i == 0)
photos.push(that.serverAddress+"/photos/defaultVenue");
callback(photos);
return;
} else {
console.log("Error querying DB for venue photos");
}
callback(null);
});
};
/**
* Retrieve the URL address of a user's (defined by id) photo and execute the callback function on it
*/
that.findPhotoOfUser = function(id, callback){
database.connection.query("SELECT * FROM users WHERE id=? AND profilePicture IS NOT NULL", [id], function(err, rows, fields){
if(!err){
var photoURL = "";
for(var i=0; i<rows.length; i++){
photoURL = that.serverAddress+"/photos/"+rows[i].profilePicture;
}
if(i == 0)
photoURL = that.serverAddress+"/photos/defaultUser";
callback(photoURL);
return;
} else {
console.log("Error querying DB for user photo");
console.log(err);
}
callback(null);
});
};
/**
* Inserts a photo path and the given photo file format into the database and executes the callback function on the new id and the file path
*/
that.addPhotoPathId = function(format, callback){
database.connection.query("INSERT INTO photo SET path=?, format=?", [that.photoFilePath, format], function(err, result){
if(!err){
var photo = {
id: result.insertId,
path: that.photoFilePath + result.insertId + format
};
console.log("Inserted photo path into DB: "+photo.path);
callback(photo);
} else {
console.log("Error trying to insert photo path into database");
callback(null);
}
});
};
/**
* Saves photo data in a file located at the given path and executes the callback function with status "OK" if successful
*/
that.addPhotoFile = function(photo, path, callback){
fs.writeFile(path, photo, function(err){
if(err){
console.log(err);
callback(null);
return;
}
callback("OK");
});
};
/**
* Creates a path for a photo file, saves the given photo file data in a file at that path and executes the callback function on the new id of the inserted photo
*/
that.savePhoto = function(photoFile, format, callback){
that.addPhotoPathId(format, function(photo) {
that.addPhotoFile(photoFile, photo.path, function(str){
if(str)
callback(photo.id);
else
callback(null);
});
});
};
/**
* Deletes a photo file and executes the callback function with status "OK" if successful
*/
that.deletePhoto = function(path, callback){
fs.unlink(path, function(err){
if(!err){
console.log("Deleted photo: "+path);
callback("OK");
} else {
console.log(err);
callback(null);
}
});
};
/**
* Deletes a photo entry in the database and executes the callback function with status "OK" if successful
*/
that.removePhoto = function(id, callback){
database.connection.query("DELETE FROM photo WHERE id=?", [id], function (err, results, fields) {
if (!err){
console.log(results.affectedRows + " record deleted");
callback("OK");
} else {
console.log(error.code);
callback(null);
}
});
};
/**
* Inserts an entry that associates a photo (defined by its id) with a venue (defined by its id) and possibly the user (defined by its id) who uploaded it and executes the callback function with status "OK" if successful
*/
that.addPhotoToVenue = function(venueId, photoId, userId, callback){
database.connection.query("INSERT INTO venue_has_picture SET venueID=?, photoID=?, addedFrom=?", [venueId, photoId, userId], function(err, result){
if(!err){
console.log("Added photo %s to venue %s from user %s", photoId, venueId, userId);
callback("OK");
} else {
console.log("Error trying to insert photo for venue");
callback(null);
}
});
};
/**
* Updates a user's (defined by its id) profile picture with the id of an uploaded photo and executes the callback function with status "OK" if successful
*/
that.addPhotoToUser = function(userId, photoId, callback){
database.connection.query("UPDATE users SET profilePicture=? WHERE id=?", [photoId, userId], function(err, result){
if(!err){
console.log("Added photo %s to user %s", photoId, userId);
callback("OK");
} else {
console.log("Error trying to insert photo for user");
callback(null);
}
});
};
/**
* Handles a GET photo request
* Finds the photo file that belongs to the requested id and sends its data to the mobile application
* req.params must contain id (the id of the photo)
*/
that.getPhoto = function(req, res, next){
that.findPhotoPathId(req.params.id, function(photo){
if(photo){
that.findPhotoFile(photo.path, function(file){
if(file){
res.setHeader("Content-Type", photo.format == ".jpg" ? "image/jpeg" : "image/png");
res.setHeader("Content-Disposition", "inline;filename=\"photo"+photo.id+"\"");
res.send(200, file);
} else
res.send(500, {error: "Server error. Can not get photo"})
});
} else {
res.send(404, {error: "Photo does not exist"});
}
});
return next();
};
/**
* Handles a POST venue photo request
* Saves the received photo data in a file and associates it with a venue
* req.params must contain id (the venue id)
* req.body must contain the photo data only
*/
that.postPhotoVenue = function(req, res, next){
if(req.user && req.user.id){
if(!req.params.id){
res.send(400, {error: "No venue was specified for photo upload"});
} else if(req.headers["content-type"] != "image/jpeg" && req.headers["content-type"] != "image/png"){
res.send(400, {error: "Only JPEG and PNG images are allowed"});
} else {
that.savePhoto(req.body, req.headers["content-type"] == "image/jpeg" ? ".jpg" : ".png", function(photoId){
if(photoId){
that.addPhotoToVenue(req.params.id, photoId, req.user.id, function(str){
if(str)
res.send(200, {error: "false"});
else
res.send(500, {error: "Could not add photo to venue"});
});
} else {
res.send(500, {error: "Could not save photo"});
}
});
}
} else {
res.send(403, {error: "You are not signed in"});
}
return next();
};
/**
* Handles a POST user photo request
* Saves the received photo data in a file and associates it with a user profile
* req.body must contain the photo data only
*/
that.postPhotoUser = function(req, res, next){
if(req.user && req.user.id){
if(req.headers["content-type"] != "image/jpeg" && req.headers["content-type"] != "image/png"){
res.send(400, {error: "Only JPEG and PNG images are allowed"});
} else {
// check if a user has already uploaded a profile picture
database.connection.query("SELECT * FROM users WHERE id=? AND profilePicture IS NOT NULL", [req.user.id], function(err, rows, fields){
if(!err){
var userPhotoId;
for(var i=0; i<rows.length; i++){
userPhotoId = rows[i].profilePicture;
}
// if not, then upload the new profile picture
if(i == 0){
console.log("Adding new profile picture");
that.savePhoto(req.body, req.headers["content-type"] == "image/jpeg" ? ".jpg" : ".png", function(photoId){
if(photoId){
that.addPhotoToUser(req.user.id, photoId, function(str){
if(str)
res.send(200, {error: "false"});
else
res.send(500, {error: "Could not add photo to user"});
});
} else {
res.send(500, {error: "Could not save photo"});
}
});
// if yes, delete the old profile picture file first
} else {
console.log("Replacing old profile picture");
that.findPhotoPathId(userPhotoId, function(photo){
that.deletePhoto(photo.path, function(foo){
if(foo){
that.removePhoto(userPhotoId, function(bar){
if(bar){
that.savePhoto(req.body, req.headers["content-type"] == "image/jpeg" ? ".jpg" : ".png", function(photoId){
if(photoId){
that.addPhotoToUser(req.user.id, photoId, function(str){
if(str)
res.send(200, {error: "false"});
else
res.send(500, {error: "Could not add photo to user"});
});
} else {
res.send(500, {error: "Could not save photo"});
}
});
} else {
console.log("Could not delete old profile picture entry");
res.send(500, {error: "Could not save photo"});
}
});
} else {
console.log("Could not delete old profile picture file");
res.send(500, {error: "Could not save photo"});
}
});
});
}
} else {
console.log("Error querying DB for user photo");
console.log(err);
res.send(500, {error: "Could not save photo"});
}
});
}
} else {
res.send(403, {error: "You are not signed in"});
}
return next();
};
}
module.exports = new photoModule();