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.
139 lines
4.5 KiB
139 lines
4.5 KiB
@using PlexRequests.UI.Helpers
|
|
@Html.Partial("_Sidebar")
|
|
|
|
@{
|
|
var baseUrl = Html.GetBaseUrl();
|
|
var formAction = "/admin/authentication";
|
|
if (!string.IsNullOrEmpty(baseUrl.ToHtmlString()))
|
|
{
|
|
formAction = "/" + baseUrl.ToHtmlString() + formAction;
|
|
}
|
|
}
|
|
<div class="col-sm-8 col-sm-push-1">
|
|
<form class="form-horizontal" method="POST" action="@formAction" id="mainForm">
|
|
<fieldset>
|
|
<legend>Authentication Settings</legend>
|
|
|
|
<div class="form-group">
|
|
<div class="checkbox">
|
|
|
|
@if (Model.UserAuthentication)
|
|
{
|
|
<input type="checkbox" id="userAuth" name="UserAuthentication" checked="checked">
|
|
<label for="userAuth">Enable User Authentication</label>
|
|
}
|
|
else
|
|
{
|
|
<input type="checkbox" id="userAuth" name="UserAuthentication">
|
|
<label for="userAuth">Enable User Authentication</label>
|
|
}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="checkbox">
|
|
|
|
@if (Model.UsePassword)
|
|
{
|
|
<input type="checkbox" id="UsePassword" name="UsePassword" checked="checked">
|
|
<label for="UsePassword">Require users to login with their passwords</label>
|
|
}
|
|
else
|
|
{
|
|
<input type="checkbox" id="UsePassword" name="UsePassword">
|
|
<label for="UsePassword">Require users to login with their passwords</label>
|
|
}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<br />
|
|
<br />
|
|
<p class="form-group">Current users that are allowed to authenticate: </p>
|
|
|
|
<div class="form-group">
|
|
<select id="users" multiple="" class="form-control-custom" style="height: 180px;"></select>
|
|
</div>
|
|
<div class="form-group">
|
|
|
|
<div>
|
|
<button id="refreshUsers" class="btn btn-primary-outline">Refresh Users</button>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="form-group">A comma separated list of users that you do not want to login.</p>
|
|
<div class="form-group">
|
|
<label for="deniedUsers" class="control-label">Denied Users</label>
|
|
<div >
|
|
<input type="text" class="form-control-custom form-control " id="DeniedUsers" name="DeniedUsers" placeholder="e.g. John, Bobby" value="@Model.DeniedUsers">
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
<div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div>
|
|
<button type="submit" class="btn btn-primary-outline">Submit</button>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<script>
|
|
$(function () {
|
|
|
|
var base = '@Html.GetBaseUrl()';
|
|
|
|
if ($('#PlexAuthToken')) {
|
|
loadUserList();
|
|
}
|
|
|
|
$('#refreshUsers').click(function (e) {
|
|
e.preventDefault();
|
|
loadUserList();
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
function loadUserList() {
|
|
$('#users').html("");
|
|
var url = "getusers";
|
|
$.ajax({
|
|
type: "Get",
|
|
url: url,
|
|
dataType: "json",
|
|
success: function (response) {
|
|
|
|
$('#users').html("");
|
|
if(!response.result){
|
|
generateNotify(response.message,"danger");
|
|
$('#users').append("<option>Error!</option>");
|
|
return;
|
|
}
|
|
if (response.users.length > 0) {
|
|
$(response.users).each(function () {
|
|
$('#users').append("<option>" + this + "</option>");
|
|
});
|
|
} else {
|
|
$('#users').append("<option>No Users, Please refresh!</option>");
|
|
}
|
|
},
|
|
error: function (e) {
|
|
console.log(e);
|
|
generateNotify("Something went wrong!", "danger");
|
|
$('#users').html("");
|
|
$('#users').append("<option>Error!</option>");
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
|
|
});
|
|
</script> |