Skip to content

Commit 5ff8506

Browse files
committed
course materials work now
1 parent dbeb0ad commit 5ff8506

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

handlers/courses/controller/groupMaterialsDownload.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ exports.get = function*() {
2020
this.set({
2121
'Content-Type': 'application/octet-stream',
2222
'Content-Disposition': 'attachment; filename=' + path.basename(material.filename),
23-
'X-Accel-Redirect': '/_download' + group.getMaterialUrl(material)
23+
'X-Accel-Redirect': '/_download/' + group.getMaterialFileRelativePath(material)
2424
});
2525

2626
this.body = '';

handlers/courses/models/courseGroup.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var schema = new Schema({
4848
// group w/o materials can set this to undefined
4949
// otherwise there will be a link to the page (maybe without files yet)
5050
materials: {
51-
type: [CourseMaterial],
51+
type: [CourseMaterial.schema],
5252
default: []
5353
},
5454

@@ -96,15 +96,15 @@ var schema = new Schema({
9696

9797

9898
schema.methods.getMaterialUrl = function(material) {
99-
return `/courses/groups/${this.slug}/materials/${material.filename}`;
99+
return `/courses/download/${this.slug}/${material.filename}`;
100100
};
101101

102-
schema.methods.getMaterialFilePath = function(material) {
103-
return path.join(config.downloadRoot, this.getMaterialUrl(material));
102+
schema.methods.getMaterialFileRelativePath = function(material) {
103+
return `courses/${this.slug}/${material.filename}`;
104104
};
105105

106106
schema.methods.getMaterialFileSize = function* (material) {
107-
var stat = yield fs.stat(this.getMaterialFilePath(material));
107+
var stat = yield fs.stat(path.join(config.downloadRoot, this.getMaterialFileRelativePath(material)));
108108
return stat.size;
109109
};
110110

handlers/courses/router.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ router.get('/orders/:orderNumber(\\d+)', require('./controller/signup').get);
1515

1616
router.get('/groups/:groupBySlug/info', mustBeParticipant, require('./controller/groupInfo').get);
1717
router.get('/groups/:groupBySlug/materials', mustBeParticipant, require('./controller/groupMaterials').get);
18-
router.get('/groups/:groupBySlug/materials/:filename', mustBeParticipant, require('./controller/groupMaterialsDownload').get);
18+
19+
// not groups/:groupBySlug/* url,
20+
// because the prefix /course/download must be constant for nginx to proxy *.zip to node
21+
router.get('/download/:groupBySlug/:filename', mustBeParticipant, require('./controller/groupMaterialsDownload').get);
22+
1923
router.get('/groups/:groupBySlug/feedback', mustBeParticipant, require('./controller/groupFeedback').get);
2024
router.post('/groups/:groupBySlug/feedback', mustBeParticipant, require('./controller/groupFeedback').post);
2125

handlers/courses/templates/groupMaterials.jade

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ block content
3232
+e('tr').line
3333
+e('td').num
3434
+e('td').name
35-
+e('a').link(href=material.filename)= material.title
35+
+e('a').link(href=material.url)= material.title
3636
+e('td').size= material.size
3737
+e('td').added= moment(material.created).format('DD.MM.YYYY')
3838
else

nginx/sites-enabled/learn.javascript.ru

+6-1
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,16 @@ server {
5151
alias <%=root%>/download/;
5252
}
5353
54-
# restricted download
54+
# restricted download (download module)
5555
location ^~ /download/ {
5656
include "partial/proxy-3000";
5757
}
5858
59+
# restricted download (courses module)
60+
location ^~ /courses/download/ {
61+
include "partial/proxy-3000";
62+
}
63+
5964
# zip for plunk
6065
location ^~ /tutorial/zipview/ {
6166
include "partial/proxy-3000";

scripts/nginx-mac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
rm /var/log/nginx/*
2+
sudo rm /var/log/nginx/*
33
sudo gulp config:nginx --prefix /opt/local/etc/nginx --env development --root /js/javascript-nodejs --debug
44
sudo port unload nginx
55
sudo pkill -9 nginx

0 commit comments

Comments
 (0)