2017-07-21 21:15:43 +00:00
|
|
|
<?php
|
2017-11-17 01:23:18 +00:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-07-21 21:15:43 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse;
|
|
|
|
|
2019-03-25 14:45:05 +00:00
|
|
|
use JKingWeb\Arsse\REST\Fever\User as Fever;
|
2019-04-01 21:24:19 +00:00
|
|
|
use JKingWeb\Arsse\ImportExport\OPML;
|
2021-02-11 02:40:51 +00:00
|
|
|
use JKingWeb\Arsse\REST\Miniflux\Token as Miniflux;
|
2018-11-05 14:08:50 +00:00
|
|
|
|
2017-07-21 21:15:43 +00:00
|
|
|
class CLI {
|
2020-03-01 23:32:01 +00:00
|
|
|
public const USAGE = <<<USAGE_TEXT
|
2017-07-21 21:15:43 +00:00
|
|
|
Usage:
|
2018-11-06 17:32:28 +00:00
|
|
|
arsse.php daemon
|
2019-03-02 19:59:44 +00:00
|
|
|
arsse.php feed refresh-all
|
2018-11-06 17:32:28 +00:00
|
|
|
arsse.php feed refresh <n>
|
|
|
|
arsse.php conf save-defaults [<file>]
|
|
|
|
arsse.php user [list]
|
2021-02-10 16:24:01 +00:00
|
|
|
arsse.php user add <username> [<password>] [--admin]
|
2018-11-06 17:32:28 +00:00
|
|
|
arsse.php user remove <username>
|
2021-02-10 16:24:01 +00:00
|
|
|
arsse.php user show <username>
|
|
|
|
arsse.php user set <username> <property> <value>
|
|
|
|
arsse.php user unset <username> <property>
|
2019-03-25 14:45:05 +00:00
|
|
|
arsse.php user set-pass <username> [<password>]
|
|
|
|
[--oldpass=<pass>] [--fever]
|
|
|
|
arsse.php user unset-pass <username>
|
|
|
|
[--oldpass=<pass>] [--fever]
|
|
|
|
arsse.php user auth <username> <password> [--fever]
|
2021-02-11 02:40:51 +00:00
|
|
|
arsse.php token list <username>
|
|
|
|
arsse.php token create <username> [<label>]
|
|
|
|
arsse.php token revoke <username> [<token>]
|
2019-05-06 04:02:59 +00:00
|
|
|
arsse.php import <username> [<file>]
|
|
|
|
[-f | --flat] [-r | --replace]
|
2019-05-01 14:46:44 +00:00
|
|
|
arsse.php export <username> [<file>]
|
|
|
|
[-f | --flat]
|
2018-11-06 17:32:28 +00:00
|
|
|
arsse.php --version
|
2019-05-06 04:02:59 +00:00
|
|
|
arsse.php -h | --help
|
|
|
|
|
|
|
|
The Arsse command-line interface can be used to perform various administrative
|
|
|
|
tasks such as starting the newsfeed refresh service, managing users, and
|
|
|
|
importing or exporting data.
|
|
|
|
|
|
|
|
Commands:
|
|
|
|
|
|
|
|
daemon
|
|
|
|
|
|
|
|
Starts the newsfeed refreshing service, which will refresh stale feeds at
|
|
|
|
the configured interval automatically.
|
|
|
|
|
|
|
|
feed refresh-all
|
|
|
|
|
|
|
|
Refreshes any stale feeds once, then exits. This performs the same
|
|
|
|
function as the daemon command without looping; this is useful if use of
|
|
|
|
a scheduler such a cron is preferred over a persitent service.
|
|
|
|
|
|
|
|
feed refresh <n>
|
|
|
|
|
|
|
|
Refreshes a single feed by numeric ID. This is principally for internal
|
|
|
|
use as the feed ID numbers are not usually exposed to the user.
|
|
|
|
|
|
|
|
conf save-defaults [<file>]
|
|
|
|
|
|
|
|
Prints default configuration parameters to standard output, or to <file>
|
|
|
|
if specified. Each parameter is annotated with a short description of its
|
|
|
|
purpose and usage.
|
|
|
|
|
|
|
|
user [list]
|
|
|
|
|
|
|
|
Prints a list of all existing users, one per line.
|
|
|
|
|
2021-02-10 16:24:01 +00:00
|
|
|
user add <username> [<password>] [--admin]
|
2019-05-06 04:02:59 +00:00
|
|
|
|
|
|
|
Adds the user specified by <username>, with the provided password
|
|
|
|
<password>. If no password is specified, a random password will be
|
2021-02-10 16:24:01 +00:00
|
|
|
generated and printed to standard output. The --admin option will make
|
|
|
|
the user an administrator, which allows them to manage users via the
|
|
|
|
Miniflux protocol, among other things.
|
2019-05-06 04:02:59 +00:00
|
|
|
|
|
|
|
user remove <username>
|
|
|
|
|
|
|
|
Removes the user specified by <username>. Data related to the user,
|
|
|
|
including folders and subscriptions, are immediately deleted. Feeds to
|
|
|
|
which the user was subscribed will be retained and refreshed until the
|
|
|
|
configured retention time elapses.
|
|
|
|
|
2021-02-10 16:24:01 +00:00
|
|
|
user show <username>
|
|
|
|
|
|
|
|
Displays the metadata of a user in a basic tabular format. See below for
|
|
|
|
details on the various properties displayed.
|
|
|
|
|
|
|
|
user set <username> <property> <value>
|
|
|
|
|
2021-02-10 17:46:28 +00:00
|
|
|
Sets a user's metadata property to the supplied value. See below for
|
2021-02-10 16:24:01 +00:00
|
|
|
details on the various properties available.
|
|
|
|
|
|
|
|
user unset <username> <property>
|
|
|
|
|
2021-02-10 17:46:28 +00:00
|
|
|
Sets a user's metadata property to its default value. See below for
|
2021-02-10 16:24:01 +00:00
|
|
|
details on the various properties available. What the default value
|
|
|
|
for a property evaluates to depends on which protocol is used.
|
|
|
|
|
2019-05-06 04:02:59 +00:00
|
|
|
user set-pass <username> [<password>]
|
|
|
|
|
2019-05-06 23:36:39 +00:00
|
|
|
Changes <username>'s password to <password>. If no password is specified,
|
|
|
|
a random password will be generated and printed to standard output.
|
2019-05-06 04:02:59 +00:00
|
|
|
|
|
|
|
The --oldpass=<pass> option can be used to supply a user's exiting
|
|
|
|
password if this is required by the authentication driver to change a
|
|
|
|
password. Currently this is not used by any existing driver.
|
|
|
|
|
|
|
|
The --fever option sets a user's Fever protocol password instead of their
|
|
|
|
general password. As Fever requires that passwords be stored insecurely,
|
|
|
|
users do not have Fever passwords by default, and logging in to the Fever
|
|
|
|
protocol is disabled until a password is set. It is highly recommended
|
|
|
|
that a user's Fever password be different from their general password.
|
|
|
|
|
|
|
|
user unset-pass <username>
|
|
|
|
|
|
|
|
Unsets a user's password, effectively disabling their account. As with
|
|
|
|
password setting, the --oldpass and --fever options may be used.
|
|
|
|
|
|
|
|
user auth <username> <password>
|
|
|
|
|
|
|
|
Tests logging in as <username> with password <password>. This only checks
|
2019-07-31 18:57:43 +00:00
|
|
|
that the user's password is correctly recognized; it has no side effects.
|
2019-05-06 04:02:59 +00:00
|
|
|
|
|
|
|
The --fever option may be used to test the user's Fever protocol password,
|
|
|
|
if any.
|
|
|
|
|
2021-02-11 02:40:51 +00:00
|
|
|
token list <username>
|
|
|
|
|
|
|
|
Lists available tokens for <username> in a simple tabular format. These
|
|
|
|
tokens act as an alternative means of authentication for the Miniflux
|
|
|
|
protocol and may be required by some clients. They do not expire.
|
|
|
|
|
|
|
|
token create <username> [<label>]
|
|
|
|
|
|
|
|
Creates a new login token for <username> and prints it. These tokens act
|
|
|
|
as an alternative means of authentication for the Miniflux protocol and
|
|
|
|
may be required by some clients. An optional label may be specified to
|
|
|
|
give the token a meaningful name.
|
|
|
|
|
|
|
|
token revoke <username> [<token>]
|
|
|
|
|
|
|
|
Deletes the specified token from the database. The token itself must be
|
|
|
|
supplied, not its label. If it is omitted all tokens are revoked.
|
|
|
|
|
2019-05-06 04:02:59 +00:00
|
|
|
import <username> [<file>]
|
|
|
|
|
|
|
|
Imports the feeds, folders, and tags found in the OPML formatted <file>
|
|
|
|
into the account of <username>. If no file is specified, data is instead
|
|
|
|
read from standard input.
|
|
|
|
|
|
|
|
The --replace option interprets the OPML file as the list of all desired
|
|
|
|
feeds, folders and tags, performing any deletion or moving of existing
|
|
|
|
entries which do not appear in the flle. If this option is not specified,
|
|
|
|
the file is assumed to list desired additions only.
|
|
|
|
|
|
|
|
The --flat option can be used to ignore any folder structures in the file,
|
|
|
|
importing any feeds only into the root folder.
|
|
|
|
|
|
|
|
export <username> [<file>]
|
|
|
|
|
|
|
|
Exports <username>'s feeds, folders, and tags to the OPML file specified
|
|
|
|
by <file>, or standard output if none is provided. Note that due to a
|
|
|
|
limitation of the OPML format, any commas present in tag names will not be
|
|
|
|
retained in the export.
|
2017-07-21 21:15:43 +00:00
|
|
|
|
2019-05-06 04:02:59 +00:00
|
|
|
The --flat option can be used to omit folders from the export. Some OPML
|
|
|
|
implementations may not support folders, or arbitrary nesting; this option
|
|
|
|
may be used when planning to import into such software.
|
2021-02-10 16:24:01 +00:00
|
|
|
|
|
|
|
User metadata:
|
|
|
|
|
2021-02-10 17:11:28 +00:00
|
|
|
User metadata are primarily used by the Miniflux protocol, and most
|
2021-02-10 16:24:01 +00:00
|
|
|
properties have identical or similar names to those used by Miniflux.
|
|
|
|
Properties may also affect other protocols, or conversely may have no
|
|
|
|
effect even when using the Miniflux protocol; this is noted below when
|
|
|
|
appropriate.
|
|
|
|
|
|
|
|
Booleans accept any of the values true/false, 1/0, yes/no, on/off.
|
|
|
|
|
|
|
|
The following metadata properties exist for each user:
|
|
|
|
|
|
|
|
num
|
|
|
|
Integer. The numeric identifier of the user. This is assigned at user
|
|
|
|
creation and is read-only.
|
|
|
|
admin
|
|
|
|
Boolean. Whether the user is an administrator. Administrators may
|
|
|
|
manage other users via the Miniflux protocol, and also may trigger
|
|
|
|
feed updates manually via the Nextcloud News protocol.
|
|
|
|
lang
|
|
|
|
String. The preferred language of the user, as a BCP 47 language tag
|
|
|
|
e.g. "en-ca". Note that since The Arsse currently only includes
|
|
|
|
English text it is not used by The Arsse itself, but clients may
|
2021-02-10 17:11:28 +00:00
|
|
|
use this metadatum in protocols which expose it.
|
2021-02-10 16:24:01 +00:00
|
|
|
tz
|
|
|
|
String. The time zone of the user, as a tzdata identifier e.g.
|
|
|
|
"America/Los_Angeles".
|
|
|
|
root_folder_name
|
|
|
|
String. The name of the root folder, in protocols which allow it to
|
|
|
|
be renamed.
|
|
|
|
sort_asc
|
|
|
|
Boolean. Whether the user prefers ascending sort order for articles.
|
|
|
|
Descending order is usually the default, but explicitly setting this
|
|
|
|
property false will also make a preference for descending order
|
|
|
|
explicit.
|
|
|
|
theme
|
|
|
|
String. The user's preferred theme. This is not used by The Arsse
|
2021-02-10 17:11:28 +00:00
|
|
|
itself, but clients may use this metadatum in protocols which expose
|
2021-02-10 16:24:01 +00:00
|
|
|
it.
|
|
|
|
page_size
|
2021-02-10 17:11:28 +00:00
|
|
|
Integer. The user's preferred page size when listing articles. This is
|
|
|
|
not used by The Arsse itself, but clients may use this metadatum in
|
2021-02-10 16:24:01 +00:00
|
|
|
protocols which expose it.
|
|
|
|
shortcuts
|
|
|
|
Boolean. Whether to enable keyboard shortcuts. This is not used by
|
2021-02-10 17:11:28 +00:00
|
|
|
The Arsse itself, but clients may use this metadatum in protocols which
|
2021-02-10 16:24:01 +00:00
|
|
|
expose it.
|
|
|
|
gestures
|
|
|
|
Boolean. Whether to enable touch gestures. This is not used by
|
2021-02-10 17:11:28 +00:00
|
|
|
The Arsse itself, but clients may use this metadatum in protocols which
|
2021-02-10 16:24:01 +00:00
|
|
|
expose it.
|
|
|
|
reading_time
|
|
|
|
Boolean. Whether to calculate and display the estimated reading time
|
|
|
|
for articles. Currently The Arsse does not calculate reading time, so
|
|
|
|
changing this will likely have no effect.
|
|
|
|
stylesheet
|
|
|
|
String. A user CSS stylesheet. This is not used by The Arsse itself,
|
2021-02-10 17:11:28 +00:00
|
|
|
but clients may use this metadatum in protocols which expose it.
|
2017-07-21 21:15:43 +00:00
|
|
|
USAGE_TEXT;
|
|
|
|
|
2018-11-06 17:32:28 +00:00
|
|
|
protected function usage($prog): string {
|
|
|
|
$prog = basename($prog);
|
|
|
|
return str_replace("arsse.php", $prog, self::USAGE);
|
2017-07-21 21:15:43 +00:00
|
|
|
}
|
|
|
|
|
2021-02-10 17:46:28 +00:00
|
|
|
protected function command($args): string {
|
|
|
|
$out = [];
|
|
|
|
foreach ($args as $k => $v) {
|
|
|
|
if (preg_match("/^[a-z]/", $k) && $v === true) {
|
|
|
|
$out[] = $k;
|
2018-11-05 14:08:50 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-10 17:46:28 +00:00
|
|
|
return implode(" ", $out);
|
2018-11-05 14:08:50 +00:00
|
|
|
}
|
|
|
|
|
2019-12-27 14:00:22 +00:00
|
|
|
/** @codeCoverageIgnore */
|
2017-08-20 03:56:32 +00:00
|
|
|
protected function loadConf(): bool {
|
2018-06-18 14:09:43 +00:00
|
|
|
$conf = file_exists(BASE."config.php") ? new Conf(BASE."config.php") : new Conf;
|
|
|
|
Arsse::load($conf);
|
2017-08-20 03:56:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-01 21:24:19 +00:00
|
|
|
protected function resolveFile($file, string $mode): string {
|
|
|
|
// TODO: checking read/write permissions on the provided path may be useful
|
|
|
|
$stdinOrStdout = in_array($mode, ["r", "r+"]) ? "php://input" : "php://output";
|
|
|
|
return ($file === "-" ? null : $file) ?? $stdinOrStdout;
|
|
|
|
}
|
|
|
|
|
2020-01-20 18:34:03 +00:00
|
|
|
public function dispatch(array $argv = null): int {
|
2018-11-06 17:32:28 +00:00
|
|
|
$argv = $argv ?? $_SERVER['argv'];
|
|
|
|
$argv0 = array_shift($argv);
|
|
|
|
$args = \Docopt::handle($this->usage($argv0), [
|
|
|
|
'argv' => $argv,
|
|
|
|
'help' => false,
|
|
|
|
]);
|
2018-11-05 14:08:50 +00:00
|
|
|
try {
|
2021-02-10 17:46:28 +00:00
|
|
|
$cmd = $this->command($args);
|
|
|
|
if ($cmd && !in_array($cmd, ["", "conf save-defaults"])) {
|
2019-04-01 21:24:19 +00:00
|
|
|
// only certain commands don't require configuration to be loaded
|
|
|
|
$this->loadConf();
|
|
|
|
}
|
|
|
|
switch ($cmd) {
|
2021-02-10 17:46:28 +00:00
|
|
|
case "":
|
|
|
|
if ($args['--version']) {
|
|
|
|
echo Arsse::VERSION.\PHP_EOL;
|
|
|
|
} elseif ($args['--help'] || $args['-h']) {
|
|
|
|
echo $this->usage($argv0).\PHP_EOL;
|
|
|
|
}
|
2018-11-06 17:32:28 +00:00
|
|
|
return 0;
|
2018-11-05 14:08:50 +00:00
|
|
|
case "daemon":
|
2021-02-07 04:51:23 +00:00
|
|
|
Arsse::$obj->get(Service::class)->watch(true);
|
2018-11-06 17:32:28 +00:00
|
|
|
return 0;
|
2018-11-05 14:08:50 +00:00
|
|
|
case "feed refresh":
|
2018-11-06 17:32:28 +00:00
|
|
|
return (int) !Arsse::$db->feedUpdate((int) $args['<n>'], true);
|
2019-03-02 19:59:44 +00:00
|
|
|
case "feed refresh-all":
|
2021-02-07 04:51:23 +00:00
|
|
|
Arsse::$obj->get(Service::class)->watch(false);
|
2019-03-02 19:59:44 +00:00
|
|
|
return 0;
|
2018-11-05 14:08:50 +00:00
|
|
|
case "conf save-defaults":
|
2019-04-01 21:24:19 +00:00
|
|
|
$file = $this->resolveFile($args['<file>'], "w");
|
2021-02-07 04:51:23 +00:00
|
|
|
return (int) !Arsse::$obj->get(Conf::class)->exportFile($file, true);
|
2019-04-01 21:24:19 +00:00
|
|
|
case "export":
|
|
|
|
$u = $args['<username>'];
|
|
|
|
$file = $this->resolveFile($args['<file>'], "w");
|
2021-02-07 04:51:23 +00:00
|
|
|
return (int) !Arsse::$obj->get(OPML::class)->exportFile($file, $u, ($args['--flat'] || $args['-f']));
|
2019-05-01 14:46:44 +00:00
|
|
|
case "import":
|
|
|
|
$u = $args['<username>'];
|
2019-07-25 19:45:18 +00:00
|
|
|
$file = $this->resolveFile($args['<file>'], "r");
|
2021-02-07 04:51:23 +00:00
|
|
|
return (int) !Arsse::$obj->get(OPML::class)->importFile($file, $u, ($args['--flat'] || $args['-f']), ($args['--replace'] || $args['-r']));
|
2021-02-11 02:40:51 +00:00
|
|
|
case "token list":
|
|
|
|
case "list token": // command reconstruction yields this order for "token list" command
|
|
|
|
return $this->tokenList($args['<username>']);
|
|
|
|
case "token create":
|
|
|
|
echo Arsse::$obj->get(Miniflux::class)->tokenGenerate($args['<username>'], $args['<label>']).\PHP_EOL;
|
|
|
|
return 0;
|
|
|
|
case "token revoke":
|
|
|
|
Arsse::$db->tokenRevoke($args['<username>'], "miniflux.login", $args['<token>']);
|
|
|
|
return 0;
|
2021-02-10 17:46:28 +00:00
|
|
|
case "user add":
|
|
|
|
$out = $this->userAddOrSetPassword("add", $args["<username>"], $args["<password>"]);
|
|
|
|
if ($args['--admin']) {
|
|
|
|
Arsse::$user->propertiesSet($args["<username>"], ['admin' => true]);
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
case "user set-pass":
|
|
|
|
if ($args['--fever']) {
|
|
|
|
$passwd = Arsse::$obj->get(Fever::class)->register($args["<username>"], $args["<password>"]);
|
|
|
|
if (is_null($args["<password>"])) {
|
|
|
|
echo $passwd.\PHP_EOL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return $this->userAddOrSetPassword("passwordSet", $args["<username>"], $args["<password>"], $args["--oldpass"]);
|
|
|
|
}
|
|
|
|
// no break
|
|
|
|
case "user unset-pass":
|
|
|
|
if ($args['--fever']) {
|
|
|
|
Arsse::$obj->get(Fever::class)->unregister($args["<username>"]);
|
|
|
|
} else {
|
|
|
|
Arsse::$user->passwordUnset($args["<username>"], $args["--oldpass"]);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
case "user remove":
|
|
|
|
return (int) !Arsse::$user->remove($args["<username>"]);
|
|
|
|
case "user show":
|
|
|
|
return $this->userShowProperties($args["<username>"]);
|
|
|
|
case "user set":
|
|
|
|
return (int) !Arsse::$user->propertiesSet($args["<username>"], [$args["<property>"] => $args["<value>"]]);
|
|
|
|
case "user unset":
|
|
|
|
return (int) !Arsse::$user->propertiesSet($args["<username>"], [$args["<property>"] => null]);
|
|
|
|
case "user auth":
|
|
|
|
return $this->userAuthenticate($args["<username>"], $args["<password>"], $args["--fever"]);
|
|
|
|
case "user list":
|
|
|
|
case "user":
|
|
|
|
return $this->userList();
|
2021-02-11 02:40:51 +00:00
|
|
|
default:
|
|
|
|
throw new Exception("constantUnknown", $cmd); // @codeCoverageIgnore
|
2017-08-28 23:38:58 +00:00
|
|
|
}
|
2018-11-05 14:08:50 +00:00
|
|
|
} catch (AbstractException $e) {
|
2018-12-08 01:03:04 +00:00
|
|
|
$this->logError($e->getMessage());
|
2018-11-05 14:08:50 +00:00
|
|
|
return $e->getCode();
|
2017-07-21 21:15:43 +00:00
|
|
|
}
|
2019-10-17 17:00:56 +00:00
|
|
|
} // @codeCoverageIgnore
|
2017-07-21 21:15:43 +00:00
|
|
|
|
2018-12-08 01:03:04 +00:00
|
|
|
/** @codeCoverageIgnore */
|
2020-01-20 18:34:03 +00:00
|
|
|
protected function logError(string $msg): void {
|
2019-01-23 21:34:54 +00:00
|
|
|
fwrite(STDERR, $msg.\PHP_EOL);
|
2018-12-08 01:03:04 +00:00
|
|
|
}
|
|
|
|
|
2018-11-05 14:08:50 +00:00
|
|
|
protected function userAddOrSetPassword(string $method, string $user, string $password = null, string $oldpass = null): int {
|
2018-11-06 17:32:28 +00:00
|
|
|
$passwd = Arsse::$user->$method(...array_slice(func_get_args(), 1));
|
2017-08-29 14:50:31 +00:00
|
|
|
if (is_null($password)) {
|
2017-09-28 23:25:31 +00:00
|
|
|
echo $passwd.\PHP_EOL;
|
2017-08-28 23:38:58 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2018-11-05 14:08:50 +00:00
|
|
|
|
|
|
|
protected function userList(): int {
|
|
|
|
$list = Arsse::$user->list();
|
|
|
|
if ($list) {
|
|
|
|
echo implode(\PHP_EOL, $list).\PHP_EOL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-25 14:45:05 +00:00
|
|
|
protected function userAuthenticate(string $user, string $password, bool $fever = false): int {
|
2021-02-07 04:51:23 +00:00
|
|
|
$result = $fever ? Arsse::$obj->get(Fever::class)->authenticate($user, $password) : Arsse::$user->auth($user, $password);
|
2019-03-25 14:45:05 +00:00
|
|
|
if ($result) {
|
2018-11-05 14:08:50 +00:00
|
|
|
echo Arsse::$lang->msg("CLI.Auth.Success").\PHP_EOL;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
echo Arsse::$lang->msg("CLI.Auth.Failure").\PHP_EOL;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2021-02-10 16:24:01 +00:00
|
|
|
|
|
|
|
protected function userShowProperties(string $user): int {
|
|
|
|
$data = Arsse::$user->propertiesGet($user);
|
|
|
|
$len = array_reduce(array_keys($data), function($carry, $item) {
|
|
|
|
return max($carry, strlen($item));
|
|
|
|
}, 0) + 2;
|
|
|
|
foreach ($data as $k => $v) {
|
|
|
|
echo str_pad($k, $len, " ");
|
|
|
|
echo var_export($v, true).\PHP_EOL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2021-02-11 02:40:51 +00:00
|
|
|
|
|
|
|
protected function tokenList(string $user): int {
|
|
|
|
$list = Arsse::$obj->get(Miniflux::class)->tokenList($user);
|
|
|
|
usort($list, function($v1, $v2) {
|
|
|
|
return $v1['label'] <=> $v2['label'];
|
|
|
|
});
|
|
|
|
foreach ($list as $t) {
|
|
|
|
echo $t['id']." ".$t['label'].\PHP_EOL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|