2013-02-23 04:41:12 +08:00
|
|
|
/**
|
|
|
|
Handles the default admin route
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
@class AdminDashboardRoute
|
|
|
|
@extends Discourse.Route
|
|
|
|
@namespace Discourse
|
|
|
|
@module Discourse
|
|
|
|
**/
|
|
|
|
Discourse.AdminDashboardRoute = Discourse.Route.extend({
|
2013-03-30 04:05:29 +08:00
|
|
|
|
2013-02-23 04:41:12 +08:00
|
|
|
setupController: function(c) {
|
2013-03-15 06:26:12 +08:00
|
|
|
this.fetchDashboardData(c);
|
2013-03-12 03:26:14 +08:00
|
|
|
this.fetchGithubCommits(c);
|
2013-02-23 04:41:12 +08:00
|
|
|
},
|
2013-02-26 05:21:52 +08:00
|
|
|
|
2013-03-15 06:26:12 +08:00
|
|
|
fetchDashboardData: function(c) {
|
|
|
|
if( !c.get('dashboardFetchedAt') || Date.create('1 hour ago', 'en') > c.get('dashboardFetchedAt') ) {
|
|
|
|
c.set('dashboardFetchedAt', new Date());
|
|
|
|
Discourse.AdminDashboard.find().then(function(d) {
|
|
|
|
if( Discourse.SiteSettings.version_checks ){
|
|
|
|
c.set('versionCheck', Discourse.VersionCheck.create(d.version_check));
|
|
|
|
}
|
|
|
|
d.reports.each(function(report){
|
|
|
|
c.set(report.type, Discourse.Report.create(report));
|
|
|
|
});
|
2013-03-23 05:50:22 +08:00
|
|
|
c.set('admins', d.admins);
|
|
|
|
c.set('moderators', d.moderators);
|
2013-06-04 23:53:19 +08:00
|
|
|
c.set('blocked', d.blocked);
|
2013-05-02 06:12:02 +08:00
|
|
|
c.set('top_referrers', d.top_referrers);
|
|
|
|
c.set('top_traffic_sources', d.top_traffic_sources);
|
|
|
|
c.set('top_referred_topics', d.top_referred_topics);
|
2013-02-23 04:41:12 +08:00
|
|
|
c.set('loading', false);
|
|
|
|
});
|
2013-05-15 23:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( !c.get('problemsFetchedAt') || Date.create(c.problemsCheckInterval, 'en') > c.get('problemsFetchedAt') ) {
|
2013-03-30 03:48:26 +08:00
|
|
|
c.set('problemsFetchedAt', new Date());
|
2013-04-17 00:09:37 +08:00
|
|
|
c.loadProblems();
|
2013-02-21 02:15:50 +08:00
|
|
|
}
|
2013-03-08 00:07:59 +08:00
|
|
|
},
|
|
|
|
|
2013-03-12 03:26:14 +08:00
|
|
|
fetchGithubCommits: function(c) {
|
2013-03-13 20:04:10 +08:00
|
|
|
if( !c.get('commitsCheckedAt') || Date.create('1 hour ago', 'en') > c.get('commitsCheckedAt') ) {
|
2013-03-12 03:26:14 +08:00
|
|
|
c.set('commitsCheckedAt', new Date());
|
|
|
|
c.set('githubCommits', Discourse.GithubCommit.findAll());
|
|
|
|
}
|
2013-02-23 04:41:12 +08:00
|
|
|
}
|
|
|
|
});
|
2013-02-21 02:15:50 +08:00
|
|
|
|