mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
4a816f827b
- Implemented all but one feed-related function (it's more ofan item function) - Fixed time conversion for input into SQL; dates in PM were previously wrong - Added miscellaneous tentative functions to Database to help with peculiarities of NCNv1; these may change - Tests to come soon
29 lines
No EOL
909 B
PHP
29 lines
No EOL
909 B
PHP
<?php
|
|
namespace JKingWeb\Arsse;
|
|
const INSTALL = true;
|
|
require_once __DIR__."/../bootstrap.php";
|
|
|
|
|
|
$user = "john.doe@example.com";
|
|
$pass = "secret";
|
|
$_SERVER['PHP_AUTH_USER'] = $user;
|
|
$_SERVER['PHP_AUTH_PW'] = $pass;
|
|
$conf = new Conf();
|
|
$conf->dbSQLite3File = ":memory:";
|
|
$conf->userAuthPreferHTTP = true;
|
|
Data::load($conf);
|
|
Data::$db->schemaUpdate();
|
|
|
|
Data::$user->add($user, $pass);
|
|
Data::$user->auth();
|
|
Data::$user->authorizationEnabled(false);
|
|
Data::$user->rightsSet($user, User\Driver::RIGHTS_GLOBAL_ADMIN);
|
|
Data::$user->authorizationEnabled(true);
|
|
Data::$db->folderAdd($user, ['name' => 'ook']);
|
|
/*Data::$db->subscriptionAdd($user, "http://linuxfr.org/news.atom");
|
|
Data::$db->subscriptionPropertiesSet($user, 1, [
|
|
'title' => "OOOOOOOOK!",
|
|
]);*/
|
|
(new REST())->dispatch(new REST\Request(
|
|
"POST", "/index.php/apps/news/api/v1-2/feeds/", json_encode(['url'=> "http://linuxfr.org/news.atom"])
|
|
)); |