forked from pencilblue/pencilblue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.js
executable file
·85 lines (72 loc) · 2.11 KB
/
page.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
/*
Copyright (C) 2014 PencilBlue, LLC
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//dependencies
var Index = require('./index.js');
/**
* Loads a page
* @class PageController
* @constructor
*/
function PageController(){}
//inheritance
util.inherits(PageController, Index);
/**
* Looks up a page and renders it
* @see BaseController#render
* @method render
* @param {Function} cb
*/
PageController.prototype.render = function(cb) {
var self = this;
var custUrl = this.pathVars.customUrl;
//check for object ID as the custom URL
var doRedirect = false;
var where = null;
try {
where = {_id: pb.DAO.getObjectID(custUrl)};
doRedirect = true;
}
catch(e){
if (pb.log.isSilly()) {
pb.log.silly("PageController: The custom URL was not an object ID [%s]. Will now search url field. [%s]", custUrl, e.message);
}
}
// fall through to URL key
if (where === null) {
where = {url: custUrl};
}
var dao = new pb.DAO();
dao.loadByValues(where, 'page', function(err, page) {
if (util.isError(err) || page == null) {
self.reqHandler.serve404();
return;
}
else if (doRedirect) {
self.redirect(pb.UrlService.urlJoin('/page', page.url), cb);
return;
}
self.req.pencilblue_page = page._id.toString();
this.page = page;
PageController.super_.prototype.render.apply(self, [cb]);
});
};
/**
* Retrieves the name of the page. The page's headhile
*
*/
PageController.prototype.getPageTitle = function() {
return this.page.headline;
};
//exports
module.exports = PageController;