Add getnotes and getnote API actions

master
Skylar Ittner 5 years ago
parent 345f3d0ba0
commit 23eb2fce69

@ -0,0 +1,16 @@
<?php
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
if (!$database->has('notes', ['AND' => ['noteid' => $VARS['id'], 'ownerid' => getRequestUser()->getUID()]])) {
sendJsonResp("No such note exists or you don't have permission to read it.", "ERROR");
}
$note = Note::loadNote($VARS['id'])->toArray();
exitWithJson(["status" => "OK", "note" => $note]);

@ -0,0 +1,15 @@
<?php
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
$noteids = $database->select('notes', 'noteid', ['ownerid' => getRequestUser()->getUID()]);
$notes = [];
foreach ($noteids as $n) {
$notes[] = Note::loadNote($n)->toArray();
}
exitWithJson(["status" => "OK", "notes" => $notes]);

@ -11,5 +11,16 @@ $APIS = [
"load" => "ping.php",
"vars" => [
]
],
"getnotes" => [
"load" => "getnotes.php",
"vars" => [
]
],
"getnote" => [
"load" => "getnote.php",
"vars" => [
"id" => "numeric"
]
]
];

@ -22,7 +22,7 @@ if (!isset($_SERVER['PHP_AUTH_USER'])) {
} else {
$user = User::byUsername($_SERVER['PHP_AUTH_USER']);
if (!$user->checkPassword($_SERVER['PHP_AUTH_PW'])) {
header('HTTP/1.0 401 Unauthorized');
header('HTTP/1.1 401 Unauthorized');
die($Strings->get("login incorrect"));
}
}

Loading…
Cancel
Save