189 lines
5.1 KiB
HTML
189 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="pico.css" type="text/css">
|
|
<script type="text/javascript" src="jquery.js"></script>
|
|
<style>
|
|
#indexmanagement{
|
|
display: none;
|
|
}
|
|
</style>
|
|
<script>
|
|
let password = "";
|
|
let datatable = {};
|
|
let content = "";
|
|
|
|
function justadd(){
|
|
let id = $("#addid").val();
|
|
let contentid = $("#addcontentid").val();
|
|
let nickname = $("#addnickname").val();
|
|
$.post("api.php",
|
|
{
|
|
action: "set",
|
|
password: password,
|
|
id: id,
|
|
contentid: contentid,
|
|
nickname: nickname,
|
|
}, function( data ) {
|
|
getlinks();
|
|
});
|
|
}
|
|
|
|
function justaddc(){
|
|
let id = $("#addidc").val();
|
|
let content = $("#addcontentc").val();
|
|
$.post("api.php",
|
|
{
|
|
action: "setcontent",
|
|
password: password,
|
|
id: id,
|
|
content: content,
|
|
}, function( data ) {
|
|
getcontents();
|
|
});
|
|
}
|
|
|
|
function delcthis(name){
|
|
$.post("api.php",
|
|
{
|
|
action: "deletecontent",
|
|
password: password,
|
|
id: name
|
|
}, function( data ) {
|
|
getcontents();
|
|
});
|
|
}
|
|
|
|
function getcontents(){
|
|
$.post("api.php",
|
|
{
|
|
action: "getcontent",
|
|
password: password
|
|
}, function( data ) {
|
|
$("#contentlist").html(data);
|
|
|
|
$("#addcontentc").keyup(function(event) {
|
|
if (event.keyCode === 13) {
|
|
$("#contentadder").click();
|
|
}
|
|
});
|
|
$("#addidc").keyup(function(event) {
|
|
if (event.keyCode === 13) {
|
|
$("#addcontentc").focus();
|
|
}
|
|
});
|
|
|
|
});
|
|
}
|
|
|
|
|
|
function delthis(name){
|
|
$.post("api.php",
|
|
{
|
|
action: "delete",
|
|
password: password,
|
|
id: name
|
|
}, function( data ) {
|
|
getlinks();
|
|
});
|
|
}
|
|
|
|
function verifyPassword(){
|
|
password = $("#pwdbox").val();
|
|
$.post("api.php",
|
|
{
|
|
action: "verify",
|
|
password: password
|
|
}, function( data ) {
|
|
if (data == "OK"){
|
|
getlinks();
|
|
getcontents();
|
|
getlog();
|
|
$("#pwdentry").fadeOut("slow", function(){
|
|
$("#indexmanagement").fadeIn("slow", function(){
|
|
});
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
function getlinks(){
|
|
$.post("api.php",
|
|
{
|
|
action: "get",
|
|
password: password
|
|
}, function( data ) {
|
|
$("#linkslist").html(data);
|
|
$("#addnickname").keyup(function(event) {
|
|
if (event.keyCode === 13) {
|
|
$("#linkadder").click();
|
|
}
|
|
});
|
|
|
|
$("#addid").keyup(function(event) {
|
|
if (event.keyCode === 13) {
|
|
$("#addcontentid").focus();
|
|
}
|
|
});
|
|
|
|
$("#addcontentid").keyup(function(event) {
|
|
if (event.keyCode === 13) {
|
|
$("#addnickname").focus();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
function getlog(){
|
|
let id = $("#logid").val();
|
|
$.post("api.php",
|
|
{
|
|
action: "getlog",
|
|
password: password,
|
|
id: id
|
|
}, function( data ) {
|
|
$("#loglist").html(data);
|
|
});
|
|
}
|
|
|
|
$(function() {
|
|
|
|
$("#submitpwd").click(verifyPassword);
|
|
$("#logget").click(getlog);
|
|
|
|
|
|
$("#logid").keyup(function(event) {
|
|
if (event.keyCode === 13) {
|
|
$("#logget").click();
|
|
}
|
|
});
|
|
|
|
});
|
|
</script>
|
|
<title>Content dispenser admin</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="pwdentry">
|
|
<input type="password" id="pwdbox">
|
|
<button id="submitpwd">Login</button>
|
|
</div>
|
|
|
|
<div id="indexmanagement">
|
|
<h1>Link manager:</h1>
|
|
<div id="linkslist">
|
|
|
|
</div>
|
|
<h1>Content manager:</h1>
|
|
<div id="contentlist">
|
|
|
|
</div>
|
|
<h1>Log manager:</h1>
|
|
<input type="text" id="logid" value="*" placeholder="Link ID"><button id="logget">Get log</button><br>
|
|
<div id="loglist">
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |