2013-08-18 19:52:13 +08:00
|
|
|
/*global Favcount:true*/
|
2013-02-25 08:18:10 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
/**
|
|
|
|
The main Discourse Application
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
@class Discourse
|
|
|
|
@extends Ember.Application
|
|
|
|
**/
|
2013-12-31 01:42:05 +08:00
|
|
|
window.Discourse = Ember.Application.createWithMixins(Discourse.Ajax, {
|
2013-02-23 04:41:12 +08:00
|
|
|
rootElement: '#main',
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-06-21 03:02:02 +08:00
|
|
|
// Helps with integration tests
|
|
|
|
URL_FIXTURES: {},
|
|
|
|
|
2013-03-14 20:01:52 +08:00
|
|
|
getURL: function(url) {
|
2013-05-08 01:30:12 +08:00
|
|
|
// If it's a non relative URL, return it.
|
|
|
|
if (url.indexOf('http') === 0) return url;
|
|
|
|
|
2013-04-04 06:26:47 +08:00
|
|
|
var u = (Discourse.BaseUri === undefined ? "/" : Discourse.BaseUri);
|
2013-03-14 20:01:52 +08:00
|
|
|
if (u[u.length-1] === '/') {
|
|
|
|
u = u.substring(0, u.length-1);
|
|
|
|
}
|
2013-11-13 00:25:27 +08:00
|
|
|
if (url.indexOf(u) !== -1) return url;
|
2013-03-14 20:01:52 +08:00
|
|
|
return u + url;
|
|
|
|
},
|
|
|
|
|
2013-09-17 02:08:55 +08:00
|
|
|
Resolver: Discourse.Resolver,
|
2013-06-04 04:12:24 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
titleChanged: function() {
|
2013-07-27 02:59:28 +08:00
|
|
|
var title = "";
|
2014-01-01 01:41:40 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
if (this.get('title')) {
|
|
|
|
title += "" + (this.get('title')) + " - ";
|
|
|
|
}
|
|
|
|
title += Discourse.SiteSettings.title;
|
|
|
|
$('title').text(title);
|
2013-06-03 08:38:57 +08:00
|
|
|
|
|
|
|
var notifyCount = this.get('notifyCount');
|
2013-08-09 00:42:08 +08:00
|
|
|
if (notifyCount > 0 && !Discourse.User.currentProp('dynamic_favicon')) {
|
2013-06-03 08:38:57 +08:00
|
|
|
title = "(" + notifyCount + ") " + title;
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
2014-01-09 07:26:53 +08:00
|
|
|
|
|
|
|
if(title !== document.title) {
|
|
|
|
// chrome bug workaround see: http://stackoverflow.com/questions/2952384/changing-the-window-title-when-focussing-the-window-doesnt-work-in-chrome
|
|
|
|
window.setTimeout(function() {
|
|
|
|
document.title = ".";
|
|
|
|
document.title = title;
|
|
|
|
}, 200);
|
|
|
|
}
|
2013-06-03 08:38:57 +08:00
|
|
|
}.observes('title', 'hasFocus', 'notifyCount'),
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-06-08 08:15:49 +08:00
|
|
|
faviconChanged: function() {
|
2013-08-09 00:42:08 +08:00
|
|
|
if(Discourse.User.currentProp('dynamic_favicon')) {
|
2013-08-19 02:26:03 +08:00
|
|
|
new Favcount(Discourse.SiteSettings.favicon_url).set(
|
|
|
|
this.get('notifyCount')
|
2013-06-08 08:15:49 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}.observes('notifyCount'),
|
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
// The classes of buttons to show on a post
|
|
|
|
postButtons: function() {
|
|
|
|
return Discourse.SiteSettings.post_menu.split("|").map(function(i) {
|
|
|
|
return (i.replace(/\+/, '').capitalize());
|
|
|
|
});
|
2014-02-13 12:02:34 +08:00
|
|
|
}.property(),
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-06-03 08:38:57 +08:00
|
|
|
notifyTitle: function(count) {
|
|
|
|
this.set('notifyCount', count);
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
/**
|
|
|
|
Log the current user out of Discourse
|
|
|
|
|
|
|
|
@method logout
|
|
|
|
**/
|
2013-02-23 04:41:12 +08:00
|
|
|
logout: function() {
|
2013-05-28 23:08:32 +08:00
|
|
|
Discourse.User.logout().then(function() {
|
2013-04-04 04:06:55 +08:00
|
|
|
// Reloading will refresh unbound properties
|
2013-05-28 23:08:32 +08:00
|
|
|
Discourse.KeyValueStore.abandonLocal();
|
2013-08-07 04:04:02 +08:00
|
|
|
window.location.pathname = Discourse.getURL('/');
|
2013-06-22 02:06:20 +08:00
|
|
|
});
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
authenticationComplete: function(options) {
|
2013-05-31 02:12:33 +08:00
|
|
|
// TODO, how to dispatch this to the controller without the container?
|
|
|
|
var loginController = Discourse.__container__.lookup('controller:login');
|
|
|
|
return loginController.authenticationComplete(options);
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-06-05 06:37:53 +08:00
|
|
|
loginRequired: function() {
|
2014-01-20 21:41:11 +08:00
|
|
|
return Discourse.SiteSettings.login_required && !Discourse.User.current();
|
2013-06-05 06:37:53 +08:00
|
|
|
}.property(),
|
|
|
|
|
2013-06-05 06:39:35 +08:00
|
|
|
redirectIfLoginRequired: function(route) {
|
|
|
|
if(this.get('loginRequired')) { route.transitionTo('login'); }
|
|
|
|
},
|
|
|
|
|
2013-09-20 08:59:17 +08:00
|
|
|
/**
|
|
|
|
Add an initializer hook for after the Discourse Application starts up.
|
|
|
|
|
|
|
|
@method addInitializer
|
|
|
|
@param {Function} init the initializer to add.
|
2013-12-04 04:11:33 +08:00
|
|
|
@param {Boolean} immediate whether to execute the function right away.
|
|
|
|
Default is false, for next run loop. If unsure, use false.
|
2013-09-20 08:59:17 +08:00
|
|
|
**/
|
2013-12-04 04:11:33 +08:00
|
|
|
addInitializer: function(init, immediate) {
|
2014-05-17 02:04:34 +08:00
|
|
|
Em.warn("`Discouse.addInitializer` is deprecated. Export an Ember initializer instead.");
|
2013-09-20 08:59:17 +08:00
|
|
|
Discourse.initializers = Discourse.initializers || [];
|
2013-12-04 04:11:33 +08:00
|
|
|
Discourse.initializers.push({fn: init, immediate: !!immediate});
|
2013-09-20 08:59:17 +08:00
|
|
|
},
|
|
|
|
|
2013-04-02 04:28:26 +08:00
|
|
|
/**
|
2013-12-04 03:22:32 +08:00
|
|
|
Start up the Discourse application by running all the initializers we've defined.
|
2013-04-02 04:28:26 +08:00
|
|
|
|
|
|
|
@method start
|
|
|
|
**/
|
2013-02-23 04:41:12 +08:00
|
|
|
start: function() {
|
2014-05-16 05:01:01 +08:00
|
|
|
|
|
|
|
// Load any ES6 initializers
|
|
|
|
Ember.keys(requirejs._eak_seen).filter(function(key) {
|
|
|
|
return (/\/initializers\//).test(key);
|
|
|
|
}).forEach(function(moduleName) {
|
|
|
|
var module = require(moduleName, null, null, true);
|
|
|
|
if (!module) { throw new Error(moduleName + ' must export an initializer.'); }
|
|
|
|
Discourse.initializer(module.default);
|
|
|
|
});
|
|
|
|
|
2013-12-04 03:22:32 +08:00
|
|
|
var initializers = this.initializers;
|
|
|
|
if (initializers) {
|
2013-10-02 01:53:26 +08:00
|
|
|
var self = this;
|
2013-12-04 04:11:33 +08:00
|
|
|
initializers.forEach(function (init) {
|
|
|
|
if (init.immediate) {
|
|
|
|
init.fn.call(self);
|
|
|
|
} else {
|
|
|
|
Em.run.next(function() {
|
|
|
|
init.fn.call(self);
|
|
|
|
});
|
|
|
|
}
|
2013-09-20 08:59:17 +08:00
|
|
|
});
|
|
|
|
}
|
2014-05-16 05:01:01 +08:00
|
|
|
|
2014-01-14 13:59:08 +08:00
|
|
|
},
|
|
|
|
|
2014-01-15 09:07:42 +08:00
|
|
|
requiresRefresh: function(){
|
|
|
|
var desired = Discourse.get("desiredAssetVersion");
|
|
|
|
return desired && Discourse.get("currentAssetVersion") !== desired;
|
|
|
|
}.property("currentAssetVersion", "desiredAssetVersion"),
|
|
|
|
|
2014-01-14 13:59:08 +08:00
|
|
|
assetVersion: function(prop, val) {
|
|
|
|
if(val) {
|
|
|
|
if(this.get("currentAssetVersion")){
|
|
|
|
this.set("desiredAssetVersion", val);
|
|
|
|
} else {
|
|
|
|
this.set("currentAssetVersion", val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this.get("currentAssetVersion");
|
2014-03-24 13:51:48 +08:00
|
|
|
}.property(),
|
|
|
|
|
|
|
|
globalNotice: function(){
|
|
|
|
var notices = [];
|
|
|
|
|
|
|
|
if(this.get("isReadOnly")){
|
|
|
|
notices.push(I18n.t("read_only_mode.enabled"));
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:25:16 +08:00
|
|
|
if(Discourse.User.currentProp('admin')) {
|
|
|
|
var topic_count = _.reduce(Discourse.Site.currentProp('categories'), function(sum,c) {
|
|
|
|
return sum + (c.get('read_restricted') ? 0 : c.get('topic_count'));
|
|
|
|
}, 0);
|
|
|
|
if (topic_count < 5) {
|
|
|
|
notices.push(I18n.t("too_few_topics_notice"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-24 13:51:48 +08:00
|
|
|
if(!_.isEmpty(Discourse.SiteSettings.global_notice)){
|
|
|
|
notices.push(Discourse.SiteSettings.global_notice);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(notices.length > 0) {
|
|
|
|
return new Handlebars.SafeString(_.map(notices, function(text) {
|
|
|
|
return "<div class='row'><div class='alert alert-info'>" + text + "</div></div>";
|
|
|
|
}).join(""));
|
|
|
|
}
|
|
|
|
}.property("isReadOnly")
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|