mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
4.9 KiB
146 lines
4.9 KiB
8 years ago
|
@using Ombi.UI.Helpers
|
||
|
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<Ombi.Core.SettingModels.EmbySettings>
|
||
|
@Html.Partial("Shared/Partial/_Sidebar")
|
||
|
@{
|
||
|
int port;
|
||
|
if (Model.Port == 0)
|
||
|
{
|
||
|
port = 8096;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
port = Model.Port;
|
||
|
}
|
||
|
}
|
||
|
<div class="col-sm-8 col-sm-push-1">
|
||
|
<form class="form-horizontal" method="POST" id="mainForm">
|
||
|
<fieldset>
|
||
|
<legend>Emby Settings</legend>
|
||
|
|
||
|
@Html.Checkbox(Model.Enable, "Enable", "Enabled")
|
||
|
<div class="form-group">
|
||
|
<label for="Ip" class="control-label">Emby Hostname or IP</label>
|
||
|
<div>
|
||
|
<input type="text" class="form-control form-control-custom " id="Ip" name="Ip" placeholder="localhost" value="@Model.Ip">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="portNumber" class="control-label">Port</label>
|
||
|
|
||
|
<div>
|
||
|
<input type="text" class="form-control form-control-custom " id="portNumber" name="Port" placeholder="Port Number" value="@port">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<div class="checkbox">
|
||
|
|
||
|
@if (Model.Ssl)
|
||
|
{
|
||
|
<input type="checkbox" id="Ssl" name="Ssl" checked="checked"><label for="Ssl">SSL</label>
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
<input type="checkbox" id="Ssl" name="Ssl"><label for="Ssl">SSL</label>
|
||
|
}
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="SubDir" class="control-label">Emby Base Url</label>
|
||
|
<div>
|
||
|
<input type="text" class="form-control form-control-custom " id="SubDir" name="SubDir" value="@Model.SubDir">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="ApiKey" class="control-label">Emby Api Key</label>
|
||
|
<div class="">
|
||
|
<input type="text" class="form-control-custom form-control" id="ApiKey" name="ApiKey" placeholder="Api Key" value="@Model.ApiKey">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<div>
|
||
|
<button id="testEmby" type="submit" class="btn btn-primary-outline">Test Connectivity <div id="spinner"></div></button>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<div>
|
||
|
<button id="save" type="submit" class="btn btn-primary-outline">Submit</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
$(function () {
|
||
|
var base = '@Html.GetBaseUrl()';
|
||
|
|
||
|
$('#testEmby').click(function (e) {
|
||
|
e.preventDefault();
|
||
|
var url = createBaseUrl(base, '/test/emby');
|
||
|
var $form = $("#mainForm");
|
||
|
|
||
|
$('#spinner').attr("class", "fa fa-spinner fa-spin");
|
||
|
$.ajax({
|
||
|
type: $form.prop("method"),
|
||
|
url: url,
|
||
|
data: $form.serialize(),
|
||
|
dataType: "json",
|
||
|
success: function (response) {
|
||
|
$('#spinner').attr("class", "");
|
||
|
console.log(response);
|
||
|
if (response.result === true) {
|
||
|
generateNotify(response.message, "success");
|
||
|
|
||
|
$('#spinner').attr("class", "fa fa-check");
|
||
|
} else {
|
||
|
generateNotify(response.message, "warning");
|
||
|
$('#spinner').attr("class", "fa fa-times");
|
||
|
}
|
||
|
},
|
||
|
error: function (e) {
|
||
|
|
||
|
$('#spinner').attr("class", "fa fa-times");
|
||
|
console.log(e);
|
||
|
generateNotify("Something went wrong!", "danger");
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
|
||
|
$('#save').click(function (e) {
|
||
|
e.preventDefault();
|
||
|
var port = $('#portNumber').val();
|
||
|
if (isNaN(port)) {
|
||
|
generateNotify("You must specify a Port.", "warning");
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var $form = $("#mainForm");
|
||
|
$.ajax({
|
||
|
type: $form.prop("method"),
|
||
|
data: $form.serialize(),
|
||
|
url: $form.prop("action"),
|
||
|
dataType: "json",
|
||
|
success: function (response) {
|
||
|
if (response.result === true) {
|
||
|
generateNotify(response.message, "success");
|
||
|
} else {
|
||
|
generateNotify(response.message, "warning");
|
||
|
}
|
||
|
},
|
||
|
error: function (e) {
|
||
|
console.log(e);
|
||
|
generateNotify("Something went wrong!", "danger");
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|
||
|
</script>
|