add action logging
This commit is contained in:
parent
1bdd87a4ee
commit
8fe1f6660b
@ -94,27 +94,28 @@ if (!empty($action) && $_SESSION["password"] == $config["admin_pwd"]){
|
||||
if ($action == "getlog"){
|
||||
$idcko = $_POST["id"];
|
||||
if (empty($idcko)||$idcko == "*"){
|
||||
$query = "SELECT `ID`, `Action`, `LinkID`, `ContentID`, `Datetime`, `Timestamp`, `Nickname`, `IP` FROM Logs";
|
||||
$query = "SELECT `ID`, `Action`, `ExtraInfo`, `LinkID`, `ContentID`, `Datetime`, `Timestamp`, `Nickname`, `IP` FROM Logs";
|
||||
$stmt7 = $mysqli->prepare($query);
|
||||
}
|
||||
else{
|
||||
$query = "SELECT `ID`, `Action`, `LinkID`, `ContentID`, `Datetime`, `Timestamp`, `Nickname`, `IP` FROM Logs WHERE `LinkID` = ? OR ContentID = ? OR Nickname = ?";
|
||||
$query = "SELECT `ID`, `Action`, `ExtraInfo`, `LinkID`, `ContentID`, `Datetime`, `Timestamp`, `Nickname`, `IP` FROM Logs WHERE `LinkID` = ? OR `ContentID` = ? OR `Nickname` = ? OR `IP` = ? OR `ExtraInfo` = ? OR `Action` = ? OR `Datetime` = ? ";
|
||||
$stmt7 = $mysqli->prepare($query);
|
||||
$stmt7->bind_param("sss", $idcko, $idcko, $idcko);
|
||||
$stmt7->bind_param("sssssss", $idcko, $idcko, $idcko, $idcko, $idcko, $idcko, $idcko);
|
||||
}
|
||||
$stmt7->bind_result ($rowidx, $actionx, $linkidx, $contentidx, $datetimex, $timestampx, $nicknamex, $ipx);
|
||||
$stmt7->bind_result ($rowidx, $actionx, $extrainfox, $linkidx, $contentidx, $datetimex, $timestampx, $nicknamex, $ipx);
|
||||
$stmt7->execute();
|
||||
$stmt7->store_result();
|
||||
$out = "<table><tbody><tr><th>Action</th><th>Date and Time</th><th>Nickname</th><th>Link</th><th>Content</th><th>IP</th><th>Button</th></tr>";
|
||||
$out = "<table><tbody><tr><th>Action</th><th>Extra info</th><th>Date and Time</th><th>Nickname</th><th>Link</th><th>Content</th><th>IP</th><th>Button</th></tr>";
|
||||
while ($stmt7->fetch()) {
|
||||
$action = htmlspecialchars($actionx);
|
||||
$link = htmlspecialchars($linkidx);
|
||||
$extrainfo = htmlspecialchars($extrainfox);
|
||||
$content = htmlspecialchars($contentidx);
|
||||
$nickname = htmlspecialchars($nicknamex);
|
||||
$ip = htmlspecialchars($ipx);
|
||||
$rowid = htmlspecialchars($rowidx);
|
||||
$datetime = htmlspecialchars($datetimex);
|
||||
$out = $out . "<tr><td>$action</td><td>$datetime</td><td>$nickname</td><td>$link</td><td>$content</td><td>$ip</td><td><button onclick=\"dellog('$rowid')\">Delete</button></td></tr>";
|
||||
$out = $out . "<tr><td>$action</td><td>$extrainfo</td><td>$datetime</td><td>$nickname</td><td>$link</td><td>$content</td><td>$ip</td><td><button onclick=\"dellog('$rowid')\">Delete</button></td></tr>";
|
||||
}
|
||||
$out = $out . "</tbody></table>";
|
||||
echo $out;
|
||||
|
2
exampleembed.txt
Normal file
2
exampleembed.txt
Normal file
@ -0,0 +1,2 @@
|
||||
<script src="https://vault.brn.systems/jquery.js"></script>
|
||||
<script src="https://vault.brn.systems/script.js" link-id="__LINK_ID__"></script>
|
13
index.php
13
index.php
@ -18,6 +18,7 @@ if (!empty($idcko)){
|
||||
if ($stmt1->num_rows() < 1) {
|
||||
die("Nonexistent link");
|
||||
}
|
||||
if (empty($_POST['action'])){
|
||||
while ($stmt1->fetch()) {
|
||||
$stmt2 = $mysqli->prepare("SELECT `Content` FROM Content WHERE `ContentID` = ?");
|
||||
$stmt2->bind_param("s", $contentid);
|
||||
@ -28,16 +29,26 @@ if (!empty($idcko)){
|
||||
die("Faulty link");
|
||||
}
|
||||
while ($stmt2->fetch()) {
|
||||
$action = "Success";
|
||||
$action = "Page view";
|
||||
$stmt3 = $mysqli->prepare("INSERT INTO Logs (`Action`, `LinkID`, `ContentID`, `Datetime`, `Nickname`, `IP`) VALUES (?, ?, ?, ?, ?, ?);");
|
||||
$stmt3->bind_param('ssssss', $action, $idcko, $contentid, $curdate, $nickname, $ipcka);
|
||||
$stmt3->execute();
|
||||
$stmt3->store_result();
|
||||
$content = str_replace("__LINK_ID__",$idcko,$content);
|
||||
echo $content;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else{
|
||||
$action = $_POST['action'];
|
||||
$extrainfo = $_POST['extrainfo'];
|
||||
$stmt4 = $mysqli->prepare("INSERT INTO Logs (`Action`, `ExtraInfo`, `LinkID`, `ContentID`, `Datetime`, `Nickname`, `IP`) VALUES (?, ?, ?, ?, ?, ?);");
|
||||
$stmt4->bind_param('sssssss', $action, $extrainfo, $idcko, $contentid, $curdate, $nickname, $ipcka);
|
||||
$stmt4->execute();
|
||||
$stmt4->store_result();
|
||||
}
|
||||
}
|
||||
else{
|
||||
die("No link");
|
||||
}
|
||||
|
2
jquery.js
vendored
Normal file
2
jquery.js
vendored
Normal file
File diff suppressed because one or more lines are too long
32
script.js
Normal file
32
script.js
Normal file
@ -0,0 +1,32 @@
|
||||
let id = document.currentScript.getAttribute('link-id');
|
||||
|
||||
function logaction(action, extrainfo){
|
||||
$.post("https://vault.brn.systems/?" + id,
|
||||
{
|
||||
action: action,
|
||||
extrinfo: extrainfo
|
||||
},
|
||||
function( data ){}
|
||||
);
|
||||
}
|
||||
|
||||
$(function() {
|
||||
$("audio").on({
|
||||
play:function(){
|
||||
let audionick = $( this ).attr("nick");
|
||||
if (audionick.length && audionick){
|
||||
let audiosrc = $( this ).attr("src");
|
||||
logaction("Audio play", audionick + "(" + audiosrc + ")");
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
$("a").on({
|
||||
click:function(){
|
||||
let linknick = $( this ).attr("nick");
|
||||
if (linknick){
|
||||
logaction("Hyperlink click", linknick);
|
||||
}
|
||||
},
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user