1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00
Arsse/lib/CLI.php

92 lines
2.8 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace JKingWeb\Arsse;
class CLI {
protected $args = [];
protected function usage(): string {
$prog = basename($_SERVER['argv'][0]);
return <<<USAGE_TEXT
Usage:
$prog daemon
$prog feed refresh <n>
$prog conf save-defaults <file>
$prog user add <username> [<password>]
$prog --version
$prog --help | -h
The Arsse command-line interface currently allows you to start the refresh
daemon, refresh a specific feed by numeric ID, add a user, or save default
configuration to a sample file.
USAGE_TEXT;
}
2017-08-29 14:50:31 +00:00
public function __construct(array $argv = null) {
$argv = $argv ?? array_slice($_SERVER['argv'], 1);
$this->args = \Docopt::handle($this->usage(), [
'argv' => $argv,
'help' => true,
'version' => Arsse::VERSION,
]);
}
protected function loadConf(): bool {
// FIXME: this should be a method of the Conf class
Arsse::load(new Conf());
2017-08-29 14:50:31 +00:00
if (file_exists(BASE."config.php")) {
Arsse::$conf->importFile(BASE."config.php");
}
// command-line operations will never respect authorization
Arsse::$user->authorizationEnabled(false);
return true;
}
2017-08-29 14:50:31 +00:00
public function dispatch(array $args = null): int {
// act on command line
$args = $args ?? $this->args;
2017-08-29 14:50:31 +00:00
if ($this->command("daemon", $args)) {
$this->loadConf();
return $this->daemon();
2017-08-29 14:50:31 +00:00
} elseif ($this->command("feed refresh", $args)) {
$this->loadConf();
return $this->feedRefresh((int) $args['<n>']);
2017-08-29 14:50:31 +00:00
} elseif ($this->command("conf save-defaults", $args)) {
return $this->confSaveDefaults($args['<file>']);
2017-08-29 14:50:31 +00:00
} elseif ($this->command("user add", $args)) {
$this->loadConf();
return $this->userAdd($args['<username>'], $args['<password>']);
}
}
protected function command($cmd, $args): bool {
2017-08-29 14:50:31 +00:00
foreach (explode(" ", $cmd) as $part) {
if (!$args[$part]) {
return false;
}
}
return true;
}
2017-08-29 14:50:31 +00:00
public function daemon(bool $loop = true): int {
(new Service)->watch($loop);
return 0; // FIXME: should return the exception code of thrown exceptions
}
2017-08-29 14:50:31 +00:00
public function feedRefresh(int $id): int {
return (int) !Arsse::$db->feedUpdate($id); // FIXME: exception error codes should be returned here
}
2017-08-29 14:50:31 +00:00
public function confSaveDefaults(string $file): int {
return (int) !(new Conf)->exportFile($file, true);
}
2017-08-29 14:50:31 +00:00
public function userAdd(string $user, string $password = null): int {
$passwd = Arsse::$user->add($user, $password);
2017-08-29 14:50:31 +00:00
if (is_null($password)) {
2017-09-28 23:25:31 +00:00
echo $passwd.\PHP_EOL;
}
return 0;
}
2017-08-29 14:50:31 +00:00
}