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.
197 lines
6.7 KiB
197 lines
6.7 KiB
@Html.Partial("_Sidebar")
|
|
@{
|
|
int port;
|
|
if (Model.Port == 0)
|
|
{
|
|
port = 5050;
|
|
}
|
|
else
|
|
{
|
|
port = Model.Port;
|
|
}
|
|
}
|
|
<div class="col-sm-8 col-sm-push-1">
|
|
<form class="form-horizontal" method="POST" id="mainForm">
|
|
<fieldset>
|
|
<legend>CouchPotato Settings</legend>
|
|
|
|
<div class="form-group">
|
|
<label for="Ip" class="control-label">CouchPotato Hostname or IP</label>
|
|
<div class="">
|
|
<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 class="">
|
|
<input type="text" class="form-control form-control-custom " id="portNumber" name="Port" placeholder="Port Number" value="@port">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="ApiKey" class="control-label">CouchPotato API Key</label>
|
|
<div>
|
|
<input type="text" class="form-control form-control-custom " id="ApiKey" name="ApiKey" value="@Model.ApiKey">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="checkbox">
|
|
<label>
|
|
@if (Model.Ssl)
|
|
{
|
|
<input type="checkbox" id="Ssl" name="Ssl" checked="checked"><text>SSL</text>
|
|
}
|
|
else
|
|
{
|
|
<input type="checkbox" id="Ssl" name="Ssl"><text>SSL</text>
|
|
}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<div>
|
|
<button type="submit" id="getProfiles" class="btn btn-primary-outline">Get Quality Profiles</button>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="select" class="control-label">Quality Profiles</label>
|
|
<div id="profiles">
|
|
<select class="form-control" id="select"></select>
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
|
|
<div class="form-group">
|
|
<div>
|
|
<button id="testCp" type="submit" class="btn btn-primary-outline">Test Connectivity</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() {
|
|
|
|
@if (!string.IsNullOrEmpty(Model.ProfileId))
|
|
{
|
|
<text>
|
|
var qualitySelected = '@Model.ProfileId';
|
|
var $form = $("#mainForm");
|
|
$.ajax({
|
|
type: $form.prop("method"),
|
|
data: $form.serialize(),
|
|
url: "cpprofiles",
|
|
dataType: "json",
|
|
success: function(response) {
|
|
response.list.forEach(function(result) {
|
|
if (result._id == qualitySelected) {
|
|
|
|
$("#select").append("<option selected='selected' value='" + result._id + "'>" + result.label + "</option>");
|
|
} else {
|
|
$("#select").append("<option value='" + result._id + "'>" + result.label + "</option>");
|
|
}
|
|
});
|
|
},
|
|
error: function(e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
</text>
|
|
}
|
|
|
|
$('#getProfiles').click(function (e) {
|
|
e.preventDefault();
|
|
var $form = $("#mainForm");
|
|
$.ajax({
|
|
type: $form.prop("method"),
|
|
data: $form.serialize(),
|
|
url: "cpprofiles",
|
|
dataType: "json",
|
|
success: function (response) {
|
|
response.list.forEach(function (result) {
|
|
$("#select").append("<option value='" + result._id + "'>" + result.label + "</option>");
|
|
});
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
}
|
|
});
|
|
});
|
|
|
|
$('#testCp').click(function (e) {
|
|
e.preventDefault();
|
|
var $form = $("#mainForm");
|
|
|
|
$.ajax({
|
|
type: $form.prop("method"),
|
|
url: "/test/cp",
|
|
data: $form.serialize(),
|
|
dataType: "json",
|
|
success: function (response) {
|
|
console.log(response);
|
|
if (response.result === true) {
|
|
generateNotify(response.message, "success");
|
|
$('#authToken').val(response.authToken);
|
|
} else {
|
|
generateNotify(response.message, "warning");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
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");
|
|
var qualityProfile = $("#profiles option:selected").val();
|
|
var data = $form.serialize();
|
|
data = data + "&profileId=" + qualityProfile;
|
|
|
|
$.ajax({
|
|
type: $form.prop("method"),
|
|
data: data,
|
|
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> |