Add /doesnotfollow

This commit is contained in:
Ceda EI 2018-04-23 19:40:20 +05:30
parent 01b2bb483d
commit 87716a4dd3
1 changed files with 20 additions and 0 deletions

View File

@ -77,6 +77,22 @@ function update() {
exec('echo php ' . __DIR__ . '/update_chain.php send | at now');
}
function dnf() {
$mysql = require('mysql_credentials.php');
$conn = new mysqli($mysql['servername'], $mysql['username'], $mysql['password'], $mysql['database']);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$query = "SELECT username from users where follows = -1 ;";
$result = $conn->query($query);
$text = "The following users follow no other user. \n";
while ($row = $result->fetch_assoc()) {
$text .= $row['username'] . "\n";
}
send_text($text);
$conn->close();
}
// Get JSON from post, store it and decode it.
$var = file_get_contents('php://input');
$decoded = json_decode($var);
@ -92,6 +108,10 @@ $modules = array(
array(
"command" => "/update",
"function" => "update();"
),
array(
"command" => "/doesnotfollow",
"function" => "dnf();"
)
);