mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
175 lines
6 KiB
PHP
175 lines
6 KiB
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse;
|
|
|
|
use JKingWeb\Arsse\REST\Fever\User as Fever;
|
|
|
|
class CLI {
|
|
const USAGE = <<<USAGE_TEXT
|
|
Usage:
|
|
arsse.php daemon
|
|
arsse.php feed refresh-all
|
|
arsse.php feed refresh <n>
|
|
arsse.php conf save-defaults [<file>]
|
|
arsse.php user [list]
|
|
arsse.php user add <username> [<password>]
|
|
arsse.php user remove <username>
|
|
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]
|
|
arsse.php --version
|
|
arsse.php --help | -h
|
|
|
|
The Arsse command-line interface currently allows you to start the refresh
|
|
daemon, refresh all feeds or a specific feed by numeric ID, manage users,
|
|
or save default configuration to a sample file.
|
|
USAGE_TEXT;
|
|
|
|
protected function usage($prog): string {
|
|
$prog = basename($prog);
|
|
return str_replace("arsse.php", $prog, self::USAGE);
|
|
}
|
|
|
|
protected function command(array $options, $args): string {
|
|
foreach ($options as $cmd) {
|
|
foreach (explode(" ", $cmd) as $part) {
|
|
if (!$args[$part]) {
|
|
continue 2;
|
|
}
|
|
}
|
|
return $cmd;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
protected function loadConf(): bool {
|
|
$conf = file_exists(BASE."config.php") ? new Conf(BASE."config.php") : new Conf;
|
|
Arsse::load($conf);
|
|
return true;
|
|
}
|
|
|
|
public function dispatch(array $argv = null) {
|
|
$argv = $argv ?? $_SERVER['argv'];
|
|
$argv0 = array_shift($argv);
|
|
$args = \Docopt::handle($this->usage($argv0), [
|
|
'argv' => $argv,
|
|
'help' => false,
|
|
]);
|
|
try {
|
|
switch ($this->command(["--help", "--version", "daemon", "feed refresh", "feed refresh-all", "conf save-defaults", "user"], $args)) {
|
|
case "--help":
|
|
echo $this->usage($argv0).\PHP_EOL;
|
|
return 0;
|
|
case "--version":
|
|
echo Arsse::VERSION.\PHP_EOL;
|
|
return 0;
|
|
case "daemon":
|
|
$this->loadConf();
|
|
$this->getService()->watch(true);
|
|
return 0;
|
|
case "feed refresh":
|
|
$this->loadConf();
|
|
return (int) !Arsse::$db->feedUpdate((int) $args['<n>'], true);
|
|
case "feed refresh-all":
|
|
$this->loadConf();
|
|
$this->getService()->watch(false);
|
|
return 0;
|
|
case "conf save-defaults":
|
|
$file = $args['<file>'];
|
|
$file = ($file === "-" ? null : $file) ?? "php://output";
|
|
return (int) !($this->getConf())->exportFile($file, true);
|
|
case "user":
|
|
$this->loadConf();
|
|
return $this->userManage($args);
|
|
}
|
|
} catch (AbstractException $e) {
|
|
$this->logError($e->getMessage());
|
|
return $e->getCode();
|
|
}
|
|
}
|
|
|
|
/** @codeCoverageIgnore */
|
|
protected function logError(string $msg) {
|
|
fwrite(STDERR, $msg.\PHP_EOL);
|
|
}
|
|
|
|
/** @codeCoverageIgnore */
|
|
protected function getService(): Service {
|
|
return new Service;
|
|
}
|
|
|
|
/** @codeCoverageIgnore */
|
|
protected function getConf(): Conf {
|
|
return new Conf;
|
|
}
|
|
|
|
/** @codeCoverageIgnore */
|
|
protected function getFever(): Fever {
|
|
return new Fever;
|
|
}
|
|
|
|
protected function userManage($args): int {
|
|
switch ($this->command(["add", "remove", "set-pass", "unset-pass", "list", "auth"], $args)) {
|
|
case "add":
|
|
return $this->userAddOrSetPassword("add", $args["<username>"], $args["<password>"]);
|
|
case "set-pass":
|
|
if ($args['--fever']) {
|
|
$passwd = $this->getFever()->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 "unset-pass":
|
|
if ($args['--fever']) {
|
|
$this->getFever()->unregister($args["<username>"]);
|
|
} else {
|
|
Arsse::$user->passwordUnset($args["<username>"], $args["--oldpass"]);
|
|
}
|
|
return 0;
|
|
case "remove":
|
|
return (int) !Arsse::$user->remove($args["<username>"]);
|
|
case "auth":
|
|
return $this->userAuthenticate($args["<username>"], $args["<password>"], $args["--fever"]);
|
|
case "list":
|
|
case "":
|
|
return $this->userList();
|
|
}
|
|
}
|
|
|
|
protected function userAddOrSetPassword(string $method, string $user, string $password = null, string $oldpass = null): int {
|
|
$passwd = Arsse::$user->$method(...array_slice(func_get_args(), 1));
|
|
if (is_null($password)) {
|
|
echo $passwd.\PHP_EOL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
protected function userList(): int {
|
|
$list = Arsse::$user->list();
|
|
if ($list) {
|
|
echo implode(\PHP_EOL, $list).\PHP_EOL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
protected function userAuthenticate(string $user, string $password, bool $fever = false): int {
|
|
$result = $fever ? $this->getFever()->authenticate($user, $password) : Arsse::$user->auth($user, $password);
|
|
if ($result) {
|
|
echo Arsse::$lang->msg("CLI.Auth.Success").\PHP_EOL;
|
|
return 0;
|
|
} else {
|
|
echo Arsse::$lang->msg("CLI.Auth.Failure").\PHP_EOL;
|
|
return 1;
|
|
}
|
|
}
|
|
}
|