39 lines
971 B
PHP
39 lines
971 B
PHP
<?php
|
|
/**
|
|
* Add/Edit Feed Page
|
|
*
|
|
* Allows users to add or edit RSS feeds
|
|
*/
|
|
|
|
include '../start.php';
|
|
|
|
Security::verifyUser();
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
// TODO: get feed, add if new, reject if existing but not owned by this user, update otherwise
|
|
$result = Feed::add($_POST['url']);
|
|
echo '<pre>'; var_dump($result); echo '</pre>';
|
|
$feed = [ 'id' => $_POST['id'], 'url' => $_POST['url'] ];
|
|
$title = 'TODO';
|
|
} else {
|
|
// TODO: Retrieve feed by ID if not new
|
|
$feed = [ 'id' => $_GET['id'], 'url' => '' ];
|
|
$title = 'Add RSS Feed';
|
|
}
|
|
page_head($title);
|
|
|
|
?>
|
|
<h1><?=$title?></h1>
|
|
<article>
|
|
<form method=POST action=/feed hx-post=/feed>
|
|
<input type=hidden name=id value=<?=$feed['id']?>>
|
|
<label>
|
|
Feed URL
|
|
<input type=url name=url required autofocus value="<?=$feed['url']?>">
|
|
</label><br>
|
|
<button type=submit>Save</button>
|
|
</form>
|
|
</article>
|
|
<?php
|
|
page_foot();
|