parent
a9ac2500d5
commit
4c536a077f
@ -0,0 +1,29 @@
|
|||||||
|
using System.IO;
|
||||||
|
using NzbDrone.Common;
|
||||||
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
|
|
||||||
|
namespace NzbDrone.Api.Frontend
|
||||||
|
{
|
||||||
|
public class LogFileMapper : IMapHttpRequestsToDisk
|
||||||
|
{
|
||||||
|
private readonly IAppFolderInfo _appFolderInfo;
|
||||||
|
|
||||||
|
public LogFileMapper(IAppFolderInfo appFolderInfo)
|
||||||
|
{
|
||||||
|
_appFolderInfo = appFolderInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string Map(string resourceUrl)
|
||||||
|
{
|
||||||
|
var path = resourceUrl.Replace('/', Path.DirectorySeparatorChar);
|
||||||
|
path = Path.GetFileName(path);
|
||||||
|
|
||||||
|
return Path.Combine(_appFolderInfo.GetLogFolder(), path);
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool CanHandle(string resourceUrl)
|
||||||
|
{
|
||||||
|
return resourceUrl.StartsWith("/log");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'app',
|
||||||
|
'marionette'
|
||||||
|
], function (App, Marionette) {
|
||||||
|
return Marionette.ItemView.extend({
|
||||||
|
template: 'Logs/Files/ContentsViewTemplate'
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,18 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'Cells/NzbDroneCell'
|
||||||
|
], function (NzbDroneCell) {
|
||||||
|
return NzbDroneCell.extend({
|
||||||
|
|
||||||
|
className: 'log-filename-cell',
|
||||||
|
|
||||||
|
render: function () {
|
||||||
|
|
||||||
|
var filename = this._getValue();
|
||||||
|
this.$el.html(filename);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,79 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'app',
|
||||||
|
'marionette',
|
||||||
|
'backgrid',
|
||||||
|
'Logs/Files/FilenameCell',
|
||||||
|
'Cells/RelativeDateCell',
|
||||||
|
'Logs/Files/Collection',
|
||||||
|
'Logs/Files/Row',
|
||||||
|
'Logs/Files/ContentsView',
|
||||||
|
'Logs/Files/ContentsModel'
|
||||||
|
], function (App, Marionette, Backgrid, FilenameCell, RelativeDateCell, LogFileCollection, LogFileRow, ContentsView, ContentsModel) {
|
||||||
|
return Marionette.Layout.extend({
|
||||||
|
template: 'Logs/Files/LayoutTemplate',
|
||||||
|
|
||||||
|
regions: {
|
||||||
|
grid : '#x-grid',
|
||||||
|
contents : '#x-contents'
|
||||||
|
},
|
||||||
|
|
||||||
|
columns:
|
||||||
|
[
|
||||||
|
{
|
||||||
|
name : 'filename',
|
||||||
|
label: 'Filename',
|
||||||
|
cell : FilenameCell
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'lastWriteTime',
|
||||||
|
label: 'Last Write Time',
|
||||||
|
cell : RelativeDateCell
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
initialize: function () {
|
||||||
|
this.collection = new LogFileCollection();
|
||||||
|
this.collectionPromise = this.collection.fetch();
|
||||||
|
|
||||||
|
App.vent.on(App.Commands.ShowLogFile, this._showLogFile, this);
|
||||||
|
},
|
||||||
|
|
||||||
|
onShow: function () {
|
||||||
|
var self = this;
|
||||||
|
this._showTable();
|
||||||
|
|
||||||
|
this.collectionPromise.done(function (){
|
||||||
|
self._showLogFile({ model: _.first(self.collection.models) });
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_showTable: function () {
|
||||||
|
|
||||||
|
this.grid.show(new Backgrid.Grid({
|
||||||
|
row : LogFileRow,
|
||||||
|
columns : this.columns,
|
||||||
|
collection: this.collection,
|
||||||
|
className : 'table table-hover'
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
|
_showLogFile: function (options) {
|
||||||
|
var self = this;
|
||||||
|
var filename = options.model.get('filename');
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: '/log/' + filename,
|
||||||
|
success: function (data) {
|
||||||
|
var model = new ContentsModel({
|
||||||
|
filename: filename,
|
||||||
|
contents: data
|
||||||
|
});
|
||||||
|
|
||||||
|
self.contents.show(new ContentsView({ model: model }));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,19 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'app',
|
||||||
|
'backgrid'
|
||||||
|
], function (App, Backgrid) {
|
||||||
|
|
||||||
|
return Backgrid.Row.extend({
|
||||||
|
className: 'log-file-row',
|
||||||
|
|
||||||
|
events: {
|
||||||
|
'click': '_showContents'
|
||||||
|
},
|
||||||
|
|
||||||
|
_showContents: function () {
|
||||||
|
App.vent.trigger(App.Commands.ShowLogFile, { model: this.model });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -1,16 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
define(
|
|
||||||
[
|
|
||||||
'backgrid'
|
|
||||||
], function (Backgrid) {
|
|
||||||
|
|
||||||
return Backgrid.Row.extend({
|
|
||||||
events: {
|
|
||||||
'click .x-search': 'search'
|
|
||||||
},
|
|
||||||
search: function () {
|
|
||||||
window.alert('Episode Search');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
Loading…
Reference in new issue