Add dummy server

master
Markus Koch 2019-07-24 20:29:53 +02:00
parent 0d345cef1b
commit f545d3d21e
1 changed files with 31 additions and 0 deletions

31
server/api.php 100644
View File

@ -0,0 +1,31 @@
<?php
// This is just a dummy implementation during the development of the GTK+3 GUI
if (isset($_GET['meta'])) {
if ($_GET['id'] == "1") {
?>
{
"title" : "Cute Wifi Cat",
"description" : "802.11nya~",
"comment" : "It's mewine!"
}
<?php
} else if ($_GET['id'] == "2") {
?>
{
"title" : "Crazy Stuff",
"description" : "It blinks. Or explodes.",
"comment" : "Like the kittens."
}
<?php
} else {
?>
{
"title" : "INVALID",
"description" : "INVALID",
"comment" : "INVALID"
}
<?php
}
}
?>