mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
97dce96fa1
Closes #1379 - Convert to new api usage for both server-side and client-side - Provide way require a negative response for boolean methods in default-settings.json - Add field validation functional tests - Settings (General) - Title length validation - Description length validation - postsPerPage, numeric, min, max - Settings (User) - Bio Length validation - Location length validation - Url validation - Login - Email validation - Editor - Title required validation
84 lines
2.4 KiB
JavaScript
84 lines
2.4 KiB
JavaScript
/*globals window, $, _, Backbone, validator */
|
|
(function () {
|
|
'use strict';
|
|
|
|
function ghostPaths() {
|
|
var path = window.location.pathname,
|
|
subdir = path.substr(0, path.search('/ghost/'));
|
|
|
|
return {
|
|
subdir: subdir,
|
|
apiRoot: subdir + '/ghost/api/v0.1'
|
|
};
|
|
}
|
|
|
|
var Ghost = {
|
|
Layout : {},
|
|
Views : {},
|
|
Collections : {},
|
|
Models : {},
|
|
|
|
paths: ghostPaths(),
|
|
|
|
// This is a helper object to denote legacy things in the
|
|
// middle of being transitioned.
|
|
temporary: {},
|
|
|
|
currentView: null,
|
|
router: null
|
|
};
|
|
|
|
_.extend(Ghost, Backbone.Events);
|
|
|
|
Backbone.oldsync = Backbone.sync;
|
|
// override original sync method to make header request contain csrf token
|
|
Backbone.sync = function (method, model, options, error) {
|
|
options.beforeSend = function (xhr) {
|
|
xhr.setRequestHeader('X-CSRF-Token', $("meta[name='csrf-param']").attr('content'));
|
|
};
|
|
/* call the old sync method */
|
|
return Backbone.oldsync(method, model, options, error);
|
|
};
|
|
|
|
Backbone.oldModelProtoUrl = Backbone.Model.prototype.url;
|
|
//overwrite original url method to add slash to end of the url if needed.
|
|
Backbone.Model.prototype.url = function () {
|
|
var url = Backbone.oldModelProtoUrl.apply(this, arguments);
|
|
return url + (url.charAt(url.length - 1) === '/' ? '' : '/');
|
|
};
|
|
|
|
Ghost.init = function () {
|
|
Ghost.router = new Ghost.Router();
|
|
|
|
// This is needed so Backbone recognizes elements already rendered server side
|
|
// as valid views, and events are bound
|
|
Ghost.notifications = new Ghost.Views.NotificationCollection({model: []});
|
|
|
|
Backbone.history.start({
|
|
pushState: true,
|
|
hashChange: false,
|
|
root: Ghost.paths.subdir + '/ghost'
|
|
});
|
|
};
|
|
|
|
validator.handleErrors = function (errors) {
|
|
Ghost.notifications.clearEverything();
|
|
_.each(errors, function (errorObj) {
|
|
|
|
Ghost.notifications.addItem({
|
|
type: 'error',
|
|
message: errorObj.message || errorObj,
|
|
status: 'passive'
|
|
});
|
|
|
|
if (errorObj.hasOwnProperty('el')) {
|
|
errorObj.el.addClass('input-error');
|
|
}
|
|
});
|
|
};
|
|
|
|
window.Ghost = Ghost;
|
|
|
|
window.addEventListener("load", Ghost.init, false);
|
|
}());
|