2013-03-30 20:01:27 +01:00
|
|
|
|
"use strict";
|
2013-05-22 05:33:35 +02:00
|
|
|
|
define(['app',
|
2013-06-19 03:02:23 +02:00
|
|
|
|
'Settings/SettingsLayout',
|
2013-05-22 05:33:35 +02:00
|
|
|
|
'Form/FormBuilder',
|
|
|
|
|
'AddSeries/AddSeriesLayout',
|
2013-05-03 09:20:52 +02:00
|
|
|
|
'Series/Index/SeriesIndexLayout',
|
2013-06-07 07:33:01 +02:00
|
|
|
|
'Calendar/CalendarLayout',
|
2013-05-22 05:33:35 +02:00
|
|
|
|
'Shared/NotificationView',
|
|
|
|
|
'Shared/NotFoundView',
|
|
|
|
|
'MainMenuView',
|
2013-06-01 21:31:39 +02:00
|
|
|
|
'Series/Details/SeriesDetailsLayout',
|
2013-05-22 05:33:35 +02:00
|
|
|
|
'Series/EpisodeCollection',
|
2013-06-05 02:49:53 +02:00
|
|
|
|
'Logs/Layout',
|
2013-06-05 07:08:10 +02:00
|
|
|
|
'Release/Layout',
|
2013-05-22 05:33:35 +02:00
|
|
|
|
'Missing/MissingLayout',
|
2013-06-07 04:39:12 +02:00
|
|
|
|
'History/HistoryLayout',
|
|
|
|
|
'Shared/FormatHelpers',
|
2013-06-15 06:02:40 +02:00
|
|
|
|
'Shared/TemplateHelpers',
|
|
|
|
|
'Shared/Footer/View'],
|
2013-06-19 03:02:23 +02:00
|
|
|
|
function (App, SettingsLayout) {
|
2013-03-30 00:28:58 +01:00
|
|
|
|
var controller = Backbone.Marionette.Controller.extend({
|
|
|
|
|
|
2013-05-15 03:17:24 +02:00
|
|
|
|
series : function () {
|
2013-04-19 01:14:08 +02:00
|
|
|
|
this._setTitle('NzbDrone');
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.Series.Index.SeriesIndexLayout());
|
2013-03-30 00:28:58 +01:00
|
|
|
|
},
|
|
|
|
|
seriesDetails: function (query) {
|
|
|
|
|
|
|
|
|
|
var self = this;
|
2013-04-19 01:14:08 +02:00
|
|
|
|
this._setTitle('Loading Series');
|
2013-03-30 00:28:58 +01:00
|
|
|
|
var series = new NzbDrone.Series.SeriesModel({ id: query });
|
|
|
|
|
series.fetch({
|
|
|
|
|
success: function (seriesModel) {
|
2013-04-19 01:14:08 +02:00
|
|
|
|
self._setTitle(seriesModel.get('title'));
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.Series.Details.SeriesDetailsLayout({ model: seriesModel }));
|
2013-03-30 00:28:58 +01:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
2013-04-19 01:14:08 +02:00
|
|
|
|
addSeries: function (action) {
|
|
|
|
|
this._setTitle('Add Series');
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.AddSeries.AddSeriesLayout({action: action}));
|
2013-04-19 01:14:08 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
calendar: function () {
|
|
|
|
|
this._setTitle('Calendar');
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.Calendar.CalendarLayout());
|
2013-04-19 01:14:08 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
settings: function (action) {
|
|
|
|
|
this._setTitle('Settings');
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new SettingsLayout({action: action}));
|
2013-03-30 00:28:58 +01:00
|
|
|
|
},
|
|
|
|
|
|
2013-04-19 01:14:08 +02:00
|
|
|
|
missing: function () {
|
|
|
|
|
this._setTitle('Missing');
|
2013-03-30 00:28:58 +01:00
|
|
|
|
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.Missing.MissingLayout());
|
2013-03-30 00:28:58 +01:00
|
|
|
|
},
|
|
|
|
|
|
2013-05-03 08:53:32 +02:00
|
|
|
|
history: function () {
|
|
|
|
|
this._setTitle('History');
|
|
|
|
|
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.History.HistoryLayout());
|
2013-05-03 08:53:32 +02:00
|
|
|
|
},
|
|
|
|
|
|
2013-06-05 07:08:10 +02:00
|
|
|
|
rss: function () {
|
|
|
|
|
this._setTitle('RSS');
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.Release.Layout());
|
2013-06-05 07:08:10 +02:00
|
|
|
|
},
|
|
|
|
|
|
2013-06-05 02:49:53 +02:00
|
|
|
|
logs: function () {
|
|
|
|
|
this._setTitle('logs');
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.Logs.Layout());
|
2013-06-05 02:49:53 +02:00
|
|
|
|
},
|
|
|
|
|
|
2013-03-30 00:28:58 +01:00
|
|
|
|
notFound: function () {
|
2013-04-19 01:14:08 +02:00
|
|
|
|
this._setTitle('Not Found');
|
2013-06-19 03:02:23 +02:00
|
|
|
|
App.mainRegion.show(new NzbDrone.Shared.NotFoundView(this));
|
2013-03-30 00:28:58 +01:00
|
|
|
|
},
|
|
|
|
|
|
2013-06-05 02:49:53 +02:00
|
|
|
|
|
2013-04-19 01:14:08 +02:00
|
|
|
|
_setTitle: function (title) {
|
2013-04-24 03:55:29 +02:00
|
|
|
|
//$('#title-region').html(title);
|
2013-03-30 00:28:58 +01:00
|
|
|
|
|
|
|
|
|
if (title.toLocaleLowerCase() === 'nzbdrone') {
|
|
|
|
|
window.document.title = 'NzbDrone';
|
2013-03-02 20:13:23 +01:00
|
|
|
|
}
|
2013-03-30 00:28:58 +01:00
|
|
|
|
else {
|
|
|
|
|
window.document.title = title + ' - NzbDrone';
|
2013-03-04 01:09:43 +01:00
|
|
|
|
}
|
2013-05-28 08:03:25 +02:00
|
|
|
|
|
|
|
|
|
this._clearCookies();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_clearCookies: function () {
|
|
|
|
|
|
|
|
|
|
if (!document.cookie) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var cookies = document.cookie.split(";");
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < cookies.length; i++) {
|
|
|
|
|
var cookie = cookies[i];
|
|
|
|
|
var eqPos = cookie.indexOf("=");
|
|
|
|
|
var name = eqPos > -1 ? cookie.substr(0, eqPos) :cookie;
|
|
|
|
|
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
|
|
|
|
|
}
|
2013-03-30 00:28:58 +01:00
|
|
|
|
}
|
|
|
|
|
});
|
2013-02-16 00:38:53 +01:00
|
|
|
|
|
2013-03-30 00:28:58 +01:00
|
|
|
|
return new controller();
|
2013-02-16 01:49:25 +01:00
|
|
|
|
|
|
|
|
|
});
|
2013-02-16 00:38:53 +01:00
|
|
|
|
|