2013-08-18 07:52:13 -04:00
|
|
|
/*global Favcount:true*/
|
2013-02-24 19:18:10 -05:00
|
|
|
|
2013-02-26 14:54:43 -05:00
|
|
|
/**
|
|
|
|
The main Discourse Application
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-02-26 14:54:43 -05:00
|
|
|
@class Discourse
|
|
|
|
@extends Ember.Application
|
|
|
|
**/
|
2013-12-30 12:42:05 -05:00
|
|
|
window.Discourse = Ember.Application.createWithMixins(Discourse.Ajax, {
|
2013-02-22 15:41:12 -05:00
|
|
|
rootElement: '#main',
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-06-20 15:02:02 -04:00
|
|
|
// Helps with integration tests
|
|
|
|
URL_FIXTURES: {},
|
|
|
|
|
2013-03-14 08:01:52 -04:00
|
|
|
getURL: function(url) {
|
2013-05-07 13:30:12 -04:00
|
|
|
// If it's a non relative URL, return it.
|
|
|
|
if (url.indexOf('http') === 0) return url;
|
|
|
|
|
2013-04-03 18:26:47 -04:00
|
|
|
var u = (Discourse.BaseUri === undefined ? "/" : Discourse.BaseUri);
|
2013-03-14 08:01:52 -04:00
|
|
|
if (u[u.length-1] === '/') {
|
|
|
|
u = u.substring(0, u.length-1);
|
|
|
|
}
|
2013-11-12 11:25:27 -05:00
|
|
|
if (url.indexOf(u) !== -1) return url;
|
2013-03-14 08:01:52 -04:00
|
|
|
return u + url;
|
|
|
|
},
|
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
Resolver: Discourse.Resolver,
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-02-26 14:54:43 -05:00
|
|
|
titleChanged: function() {
|
2013-07-26 14:59:28 -04:00
|
|
|
var title = "";
|
2013-12-31 12:41:40 -05:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
if (this.get('title')) {
|
|
|
|
title += "" + (this.get('title')) + " - ";
|
|
|
|
}
|
|
|
|
title += Discourse.SiteSettings.title;
|
|
|
|
$('title').text(title);
|
2013-06-02 20:38:57 -04:00
|
|
|
|
|
|
|
var notifyCount = this.get('notifyCount');
|
2013-08-08 12:42:08 -04:00
|
|
|
if (notifyCount > 0 && !Discourse.User.currentProp('dynamic_favicon')) {
|
2013-06-02 20:38:57 -04:00
|
|
|
title = "(" + notifyCount + ") " + title;
|
2013-02-22 15:41:12 -05:00
|
|
|
}
|
2014-01-08 18:26:53 -05: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-02 20:38:57 -04:00
|
|
|
}.observes('title', 'hasFocus', 'notifyCount'),
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-06-07 20:15:49 -04:00
|
|
|
faviconChanged: function() {
|
2013-08-08 12:42:08 -04:00
|
|
|
if(Discourse.User.currentProp('dynamic_favicon')) {
|
2013-08-18 14:26:03 -04:00
|
|
|
new Favcount(Discourse.SiteSettings.favicon_url).set(
|
|
|
|
this.get('notifyCount')
|
2013-06-07 20:15:49 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}.observes('notifyCount'),
|
|
|
|
|
2013-02-26 14:54:43 -05: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());
|
|
|
|
});
|
|
|
|
}.property('Discourse.SiteSettings.post_menu'),
|
|
|
|
|
2013-06-02 20:38:57 -04:00
|
|
|
notifyTitle: function(count) {
|
|
|
|
this.set('notifyCount', count);
|
2013-02-22 15:41:12 -05:00
|
|
|
},
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-02-26 14:54:43 -05:00
|
|
|
/**
|
|
|
|
Log the current user out of Discourse
|
|
|
|
|
|
|
|
@method logout
|
|
|
|
**/
|
2013-02-22 15:41:12 -05:00
|
|
|
logout: function() {
|
2013-05-28 11:08:32 -04:00
|
|
|
Discourse.User.logout().then(function() {
|
2013-04-03 16:06:55 -04:00
|
|
|
// Reloading will refresh unbound properties
|
2013-05-28 11:08:32 -04:00
|
|
|
Discourse.KeyValueStore.abandonLocal();
|
2013-08-06 16:04:02 -04:00
|
|
|
window.location.pathname = Discourse.getURL('/');
|
2013-06-21 14:06:20 -04:00
|
|
|
});
|
2013-02-22 15:41:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
authenticationComplete: function(options) {
|
2013-05-30 14:12:33 -04: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-22 15:41:12 -05:00
|
|
|
},
|
2013-02-26 14:54:43 -05:00
|
|
|
|
2013-06-04 18:37:53 -04:00
|
|
|
loginRequired: function() {
|
2014-01-20 08:41:11 -05:00
|
|
|
return Discourse.SiteSettings.login_required && !Discourse.User.current();
|
2013-06-04 18:37:53 -04:00
|
|
|
}.property(),
|
|
|
|
|
2013-06-04 18:39:35 -04:00
|
|
|
redirectIfLoginRequired: function(route) {
|
|
|
|
if(this.get('loginRequired')) { route.transitionTo('login'); }
|
|
|
|
},
|
|
|
|
|
2013-09-19 20:59:17 -04:00
|
|
|
/**
|
|
|
|
Add an initializer hook for after the Discourse Application starts up.
|
|
|
|
|
|
|
|
@method addInitializer
|
|
|
|
@param {Function} init the initializer to add.
|
2013-12-03 15:11:33 -05:00
|
|
|
@param {Boolean} immediate whether to execute the function right away.
|
|
|
|
Default is false, for next run loop. If unsure, use false.
|
2013-09-19 20:59:17 -04:00
|
|
|
**/
|
2013-12-03 15:11:33 -05:00
|
|
|
addInitializer: function(init, immediate) {
|
2013-09-19 20:59:17 -04:00
|
|
|
Discourse.initializers = Discourse.initializers || [];
|
2013-12-03 15:11:33 -05:00
|
|
|
Discourse.initializers.push({fn: init, immediate: !!immediate});
|
2013-09-19 20:59:17 -04:00
|
|
|
},
|
|
|
|
|
2013-04-01 16:28:26 -04:00
|
|
|
/**
|
2013-12-03 14:22:32 -05:00
|
|
|
Start up the Discourse application by running all the initializers we've defined.
|
2013-04-01 16:28:26 -04:00
|
|
|
|
|
|
|
@method start
|
|
|
|
**/
|
2013-02-22 15:41:12 -05:00
|
|
|
start: function() {
|
2013-12-03 14:22:32 -05:00
|
|
|
var initializers = this.initializers;
|
|
|
|
if (initializers) {
|
2013-10-01 13:53:26 -04:00
|
|
|
var self = this;
|
2013-12-03 15:11:33 -05:00
|
|
|
initializers.forEach(function (init) {
|
|
|
|
if (init.immediate) {
|
|
|
|
init.fn.call(self);
|
|
|
|
} else {
|
|
|
|
Em.run.next(function() {
|
|
|
|
init.fn.call(self);
|
|
|
|
});
|
|
|
|
}
|
2013-09-19 20:59:17 -04:00
|
|
|
});
|
|
|
|
}
|
2014-01-14 00:59:08 -05:00
|
|
|
},
|
|
|
|
|
2014-01-14 20:07:42 -05:00
|
|
|
requiresRefresh: function(){
|
|
|
|
var desired = Discourse.get("desiredAssetVersion");
|
|
|
|
return desired && Discourse.get("currentAssetVersion") !== desired;
|
|
|
|
}.property("currentAssetVersion", "desiredAssetVersion"),
|
|
|
|
|
2014-01-14 00:59:08 -05:00
|
|
|
assetVersion: function(prop, val) {
|
|
|
|
if(val) {
|
|
|
|
if(this.get("currentAssetVersion")){
|
|
|
|
this.set("desiredAssetVersion", val);
|
|
|
|
} else {
|
|
|
|
this.set("currentAssetVersion", val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this.get("currentAssetVersion");
|
|
|
|
}.property()
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-02-22 15:41:12 -05:00
|
|
|
});
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-03-12 23:06:58 -04:00
|
|
|
Discourse.Router = Discourse.Router.reopen({ location: 'discourse_location' });
|