aboutsummaryrefslogtreecommitdiff
path: root/cli_util.php
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2022-07-09 19:40:17 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-07-09 19:40:17 +0300
commitf7bfdf58def6aadc922e1632f407d1418269a0d7 (patch)
treed7a0b2819e6a26c11d40ee0b27267ea827fbb345 /cli_util.php
initial
Diffstat (limited to 'cli_util.php')
-rwxr-xr-xcli_util.php75
1 files changed, 75 insertions, 0 deletions
diff --git a/cli_util.php b/cli_util.php
new file mode 100755
index 0000000..97885ff
--- /dev/null
+++ b/cli_util.php
@@ -0,0 +1,75 @@
+#!/usr/bin/env php8.1
+<?php
+
+namespace cli_util;
+
+use cli;
+use posts;
+use uploads;
+use pages;
+use config;
+
+require_once __DIR__.'/init.php';
+
+$cli = new cli(__NAMESPACE__);
+$cli->run();
+
+function admin_reset(): void {
+ $pwd1 = cli::silentInput("New password: ");
+ $pwd2 = cli::silentInput("Again: ");
+
+ if ($pwd1 != $pwd2)
+ cli::die("Passwords do not match");
+
+ if (trim($pwd1) == '')
+ cli::die("Password can not be empty");
+
+ if (!config::set('admin_pwd', salt_password($pwd1)))
+ cli::die("Database error");
+}
+
+function admin_check(): void {
+ $pwd = config::get('admin_pwd');
+ echo is_null($pwd) ? "Not set" : $pwd;
+ echo "\n";
+}
+
+function blog_erase(): void {
+ $db = getDb();
+ $tables = ['posts', 'posts_tags', 'tags'];
+ foreach ($tables as $t) {
+ $db->query("TRUNCATE TABLE $t");
+ }
+}
+
+function tags_recount(): void {
+ $tags = posts::getAllTags(true);
+ foreach ($tags as $tag)
+ posts::recountPostsWithTag($tag->id);
+}
+
+function posts_html(): void {
+ $kw = ['include_hidden' => true];
+ $posts = posts::getPosts(0, posts::getPostsCount(...$kw), ...$kw);
+ foreach ($posts as $p) {
+ $p->updateHtml();
+ $p->updateText();
+ }
+}
+
+function pages_html(): void {
+ $pages = pages::getAll();
+ foreach ($pages as $p) {
+ $p->updateHtml();
+ }
+}
+
+function add_files_to_uploads(): void {
+ $path = cli::input('Enter path: ');
+ if (!file_exists($path))
+ cli::die("file $path doesn't exists");
+ $name = basename($path);
+ $ext = extension($name);
+ $id = uploads::add($path, $name, '');
+ echo "upload id: $id\n";
+}