2013-02-21 02:15:50 +08:00
|
|
|
/*global Modernizr:true*/
|
2013-02-25 08:18:10 +08:00
|
|
|
/*global assetPath:true*/
|
|
|
|
|
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-02-23 04:41:12 +08:00
|
|
|
Discourse = Ember.Application.createWithMixins({
|
|
|
|
rootElement: '#main',
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
// Data we want to remember for a short period
|
|
|
|
transient: Em.Object.create(),
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
// Whether the app has focus or not
|
2013-02-23 04:41:12 +08:00
|
|
|
hasFocus: true,
|
2013-02-27 03:54:43 +08:00
|
|
|
|
|
|
|
// Are we currently scrolling?
|
2013-02-23 04:41:12 +08:00
|
|
|
scrolling: false,
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
// The highest seen post number by topic
|
|
|
|
highestSeenByTopic: {},
|
2013-02-21 02:15:50 +08:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
return u + url;
|
|
|
|
},
|
|
|
|
|
2013-06-04 04:12:24 +08:00
|
|
|
/**
|
|
|
|
This custom resolver allows us to find admin templates without calling .render
|
|
|
|
even though our path formats are slightly different than what ember prefers.
|
|
|
|
*/
|
|
|
|
resolver: Ember.DefaultResolver.extend({
|
2013-06-08 00:13:46 +08:00
|
|
|
|
2013-06-04 04:12:24 +08:00
|
|
|
resolveTemplate: function(parsedName) {
|
|
|
|
var resolvedTemplate = this._super(parsedName);
|
|
|
|
if (resolvedTemplate) { return resolvedTemplate; }
|
|
|
|
|
2013-06-08 00:13:46 +08:00
|
|
|
var decamelized = parsedName.fullNameWithoutType.decamelize();
|
|
|
|
|
|
|
|
// See if we can find it with slashes instead of underscores
|
|
|
|
var slashed = decamelized.replace("_", "/");
|
|
|
|
resolvedTemplate = Ember.TEMPLATES[slashed];
|
|
|
|
if (resolvedTemplate) { return resolvedTemplate; }
|
|
|
|
|
2013-06-04 04:12:24 +08:00
|
|
|
// If we can't find a template, check to see if it's similar to how discourse
|
|
|
|
// lays out templates like: adminEmail => admin/templates/email
|
|
|
|
if (parsedName.fullNameWithoutType.indexOf('admin') === 0) {
|
|
|
|
decamelized = decamelized.replace(/^admin\_/, 'admin/templates/');
|
|
|
|
decamelized = decamelized.replace(/^admin\./, 'admin/templates/');
|
|
|
|
decamelized = decamelized.replace(/\./, '_');
|
|
|
|
|
|
|
|
resolvedTemplate = Ember.TEMPLATES[decamelized];
|
|
|
|
if (resolvedTemplate) { return resolvedTemplate; }
|
|
|
|
}
|
|
|
|
return Ember.TEMPLATES.not_found;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
titleChanged: function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
var title;
|
|
|
|
title = "";
|
|
|
|
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-06-12 12:14:15 +08:00
|
|
|
if (notifyCount > 0 && !Discourse.SiteSettings.dynamic_favicon) {
|
2013-06-03 08:38:57 +08:00
|
|
|
title = "(" + notifyCount + ") " + title;
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
|
|
|
// chrome bug workaround see: http://stackoverflow.com/questions/2952384/changing-the-window-title-when-focussing-the-window-doesnt-work-in-chrome
|
2013-02-27 03:54:43 +08:00
|
|
|
window.setTimeout(function() {
|
2013-02-23 04:41:12 +08:00
|
|
|
document.title = ".";
|
|
|
|
document.title = title;
|
2013-02-27 03:54:43 +08:00
|
|
|
}, 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() {
|
|
|
|
if(Discourse.SiteSettings.dynamic_favicon) {
|
|
|
|
$.faviconNotify(
|
|
|
|
Discourse.SiteSettings.favicon_url, this.get('notifyCount')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}.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());
|
|
|
|
});
|
|
|
|
}.property('Discourse.SiteSettings.post_menu'),
|
|
|
|
|
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-23 04:41:12 +08:00
|
|
|
openComposer: function(opts) {
|
|
|
|
// TODO, remove container link
|
|
|
|
var composer = Discourse.__container__.lookup('controller:composer');
|
|
|
|
if (composer) composer.open(opts);
|
|
|
|
},
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
/**
|
|
|
|
Establishes global DOM events and bindings via jQuery.
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
@method bindDOMEvents
|
|
|
|
**/
|
2013-02-23 04:41:12 +08:00
|
|
|
bindDOMEvents: function() {
|
2013-02-27 03:54:43 +08:00
|
|
|
var $html, hasTouch;
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
$html = $('html');
|
2013-02-23 04:41:12 +08:00
|
|
|
hasTouch = false;
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
if ($html.hasClass('touch')) {
|
|
|
|
hasTouch = true;
|
|
|
|
}
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
if (Modernizr.prefixed("MaxTouchPoints", navigator) > 1) {
|
|
|
|
hasTouch = true;
|
|
|
|
}
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
if (hasTouch) {
|
|
|
|
$html.addClass('discourse-touch');
|
|
|
|
this.touch = true;
|
|
|
|
this.hasTouch = true;
|
|
|
|
} else {
|
|
|
|
$html.addClass('discourse-no-touch');
|
|
|
|
this.touch = false;
|
|
|
|
}
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
$('#main').on('click.discourse', '[data-not-implemented=true]', function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
alert(Em.String.i18n('not_implemented'));
|
|
|
|
return false;
|
|
|
|
});
|
2013-02-27 03:54:43 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
$('#main').on('click.discourse', 'a', function(e) {
|
2013-04-30 21:48:58 +08:00
|
|
|
if (e.isDefaultPrevented() || e.shiftKey || e.metaKey || e.ctrlKey) return;
|
2013-02-27 03:54:43 +08:00
|
|
|
|
|
|
|
var $currentTarget = $(e.currentTarget);
|
|
|
|
var href = $currentTarget.attr('href');
|
|
|
|
if (!href) return;
|
|
|
|
if (href === '#') return;
|
|
|
|
if ($currentTarget.attr('target')) return;
|
|
|
|
if ($currentTarget.data('auto-route')) return;
|
2013-04-05 00:59:44 +08:00
|
|
|
|
|
|
|
// If it's an ember #linkTo skip it
|
|
|
|
if ($currentTarget.hasClass('ember-view')) return;
|
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
if ($currentTarget.hasClass('lightbox')) return;
|
|
|
|
if (href.indexOf("mailto:") === 0) return;
|
|
|
|
if (href.match(/^http[s]?:\/\//i) && !href.match(new RegExp("^http:\\/\\/" + window.location.hostname, "i"))) return;
|
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
e.preventDefault();
|
2013-02-27 03:54:43 +08:00
|
|
|
Discourse.URL.routeTo(href);
|
2013-02-23 04:41:12 +08:00
|
|
|
return false;
|
|
|
|
});
|
2013-02-27 03:54:43 +08:00
|
|
|
|
|
|
|
$(window).focus(function() {
|
|
|
|
Discourse.set('hasFocus', true);
|
|
|
|
Discourse.set('notify', false);
|
2013-02-23 04:41:12 +08:00
|
|
|
}).blur(function() {
|
2013-02-27 03:54:43 +08:00
|
|
|
Discourse.set('hasFocus', false);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Add a CSRF token to all AJAX requests
|
|
|
|
var csrfToken = $('meta[name=csrf-token]').attr('content');
|
2013-03-06 04:39:21 +08:00
|
|
|
$.ajaxPrefilter(function(options, originalOptions, xhr) {
|
2013-02-27 03:54:43 +08:00
|
|
|
if (!options.crossDomain) {
|
|
|
|
xhr.setRequestHeader('X-CSRF-Token', csrfToken);
|
|
|
|
}
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
2013-06-05 07:32:03 +08:00
|
|
|
|
|
|
|
setInterval(function(){
|
|
|
|
Discourse.Formatter.updateRelativeAge($('.relative-date'));
|
|
|
|
},60 * 1000);
|
2013-02-23 04:41:12 +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-04-04 04:06:55 +08:00
|
|
|
window.location.reload();
|
2013-05-28 23:08:32 +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() {
|
|
|
|
return (
|
|
|
|
Discourse.SiteSettings.login_required && !Discourse.User.current()
|
|
|
|
);
|
|
|
|
}.property(),
|
|
|
|
|
2013-06-05 06:39:35 +08:00
|
|
|
redirectIfLoginRequired: function(route) {
|
|
|
|
if(this.get('loginRequired')) { route.transitionTo('login'); }
|
|
|
|
},
|
|
|
|
|
2013-04-02 04:28:26 +08:00
|
|
|
/**
|
|
|
|
Our own $.ajax method. Makes sure the .then method executes in an Ember runloop
|
2013-05-08 01:30:12 +08:00
|
|
|
for performance reasons. Also automatically adjusts the URL to support installs
|
|
|
|
in subfolders.
|
2013-04-02 04:28:26 +08:00
|
|
|
|
|
|
|
@method ajax
|
|
|
|
**/
|
|
|
|
ajax: function() {
|
2013-05-07 23:15:28 +08:00
|
|
|
|
|
|
|
var url, args;
|
2013-06-14 03:08:42 +08:00
|
|
|
|
2013-05-07 23:15:28 +08:00
|
|
|
if (arguments.length === 1) {
|
|
|
|
if (typeof arguments[0] === "string") {
|
|
|
|
url = arguments[0];
|
|
|
|
args = {};
|
|
|
|
} else {
|
|
|
|
args = arguments[0];
|
|
|
|
url = args.url;
|
|
|
|
delete args.url;
|
|
|
|
}
|
|
|
|
} else if (arguments.length === 2) {
|
|
|
|
url = arguments[0];
|
|
|
|
args = arguments[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.success) {
|
2013-05-08 01:30:12 +08:00
|
|
|
console.warning("DEPRECATION: Discourse.ajax should use promises, received 'success' callback");
|
2013-05-07 23:15:28 +08:00
|
|
|
}
|
|
|
|
if (args.error) {
|
2013-05-08 01:30:12 +08:00
|
|
|
console.warning("DEPRECATION: Discourse.ajax should use promises, received 'error' callback");
|
2013-05-07 23:15:28 +08:00
|
|
|
}
|
|
|
|
|
2013-06-14 03:08:42 +08:00
|
|
|
// If we have URL_FIXTURES, load from there instead (testing)
|
|
|
|
var fixture = Discourse.URL_FIXTURES && Discourse.URL_FIXTURES[url];
|
|
|
|
if (fixture) {
|
|
|
|
return Ember.Deferred.promise(function(promise) {
|
|
|
|
promise.resolve(fixture);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2013-05-08 01:30:12 +08:00
|
|
|
return Ember.Deferred.promise(function (promise) {
|
|
|
|
var oldSuccess = args.success;
|
|
|
|
args.success = function(xhr) {
|
|
|
|
Ember.run(promise, promise.resolve, xhr);
|
|
|
|
if (oldSuccess) oldSuccess(xhr);
|
|
|
|
}
|
|
|
|
|
|
|
|
var oldError = args.error;
|
|
|
|
args.error = function(xhr) {
|
2013-05-08 05:16:13 +08:00
|
|
|
|
|
|
|
// If it's a parseerror, don't reject
|
|
|
|
if (xhr.status === 200) return args.success(xhr);
|
|
|
|
|
2013-05-08 01:30:12 +08:00
|
|
|
promise.reject(xhr);
|
|
|
|
if (oldError) oldError(xhr);
|
|
|
|
}
|
|
|
|
|
2013-05-08 05:16:13 +08:00
|
|
|
// We default to JSON on GET. If we don't, sometimes if the server doesn't return the proper header
|
|
|
|
// it will not be parsed as an object.
|
|
|
|
if (!args.type) args.type = 'GET';
|
|
|
|
if ((!args.dataType) && (args.type === 'GET')) args.dataType = 'json';
|
|
|
|
|
2013-05-08 01:30:12 +08:00
|
|
|
$.ajax(Discourse.getURL(url), args);
|
|
|
|
});
|
2013-04-02 04:28:26 +08:00
|
|
|
},
|
|
|
|
|
2013-05-29 05:12:37 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
Subscribes the current user to receive message bus notifications
|
|
|
|
**/
|
|
|
|
subscribeUserToNotifications: function() {
|
|
|
|
var user = Discourse.User.current();
|
|
|
|
if (user) {
|
|
|
|
var bus = Discourse.MessageBus;
|
|
|
|
bus.callbackInterval = Discourse.SiteSettings.polling_interval;
|
|
|
|
bus.enableLongPolling = true;
|
|
|
|
if (user.admin || user.moderator) {
|
|
|
|
bus.subscribe("/flagged_counts", function(data) {
|
|
|
|
user.set('site_flagged_posts_count', data.total);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
bus.subscribe("/notification/" + user.get('id'), (function(data) {
|
|
|
|
user.set('unread_notifications', data.unread_notifications);
|
|
|
|
user.set('unread_private_messages', data.unread_private_messages);
|
|
|
|
}), user.notification_channel_position);
|
|
|
|
|
|
|
|
bus.subscribe("/categories", function(data){
|
|
|
|
var site = Discourse.Site.instance();
|
2013-06-11 04:48:50 +08:00
|
|
|
_.each(data.categories,function(c){
|
2013-05-29 05:12:37 +08:00
|
|
|
site.updateCategory(c)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-02 04:28:26 +08:00
|
|
|
/**
|
|
|
|
Start up the Discourse application.
|
|
|
|
|
|
|
|
@method start
|
|
|
|
**/
|
2013-02-23 04:41:12 +08:00
|
|
|
start: function() {
|
2013-02-27 03:54:43 +08:00
|
|
|
Discourse.bindDOMEvents();
|
2013-03-20 23:26:46 +08:00
|
|
|
Discourse.SiteSettings = PreloadStore.get('siteSettings');
|
2013-04-19 11:06:00 +08:00
|
|
|
Discourse.MessageBus.alwaysLongPoll = Discourse.Environment === "development";
|
2013-02-23 04:41:12 +08:00
|
|
|
Discourse.MessageBus.start();
|
|
|
|
Discourse.KeyValueStore.init("discourse_", Discourse.MessageBus);
|
2013-06-03 02:05:12 +08:00
|
|
|
|
|
|
|
// Don't remove site settings for now. It seems on some browsers the route
|
|
|
|
// tries to use it after it has been removed
|
|
|
|
// PreloadStore.remove('siteSettings');
|
|
|
|
|
2013-02-27 03:54:43 +08:00
|
|
|
// Developer specific functions
|
|
|
|
Discourse.Development.setupProbes();
|
|
|
|
Discourse.Development.observeLiveChanges();
|
2013-05-29 05:12:37 +08:00
|
|
|
Discourse.subscribeUserToNotifications();
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
});
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-03-13 11:06:58 +08:00
|
|
|
Discourse.Router = Discourse.Router.reopen({ location: 'discourse_location' });
|