aboutsummaryrefslogtreecommitdiff
path: root/cli/_update-or-create-user.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-08-05 18:27:47 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2017-08-05 18:27:47 +0200
commit673b6e48b0af5f2f6f92c501f82fe10281dbf20f (patch)
treef8d0a3f0ae270cb496d25bb7237b5ad57b2cd321 /cli/_update-or-create-user.php
parent03a99c2408ce5439c3a1402cf308eec557bfdaaf (diff)
Mutualise create-user and update-user
Diffstat (limited to 'cli/_update-or-create-user.php')
-rw-r--r--cli/_update-or-create-user.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/cli/_update-or-create-user.php b/cli/_update-or-create-user.php
new file mode 100644
index 000000000..951e28fa2
--- /dev/null
+++ b/cli/_update-or-create-user.php
@@ -0,0 +1,51 @@
+<?php
+require('_cli.php');
+
+$params = array(
+ 'user:',
+ 'password:',
+ 'api_password:',
+ 'language:',
+ 'email:',
+ 'token:',
+ 'purge_after_months:',
+ 'feed_min_articles_default:',
+ 'feed_ttl_default:',
+ 'since_hours_posts_per_rss:',
+ 'min_posts_per_rss:',
+ 'max_posts_per_rss:',
+ );
+
+if (!$isUpdate) {
+ $params[] = 'no_default_feeds'; //Only for creating new users
+}
+
+$options = getopt('', $params);
+
+if (empty($options['user'])) {
+ fail('Usage: ' . basename(__FILE__) . " --user username ( --password 'password' --api_password 'api_password'" .
+ " --language en --email user@example.net --token 'longRandomString'" .
+ ($isUpdate ? '' : '--no_default_feeds') .
+ " --purge_after_months 3 --feed_min_articles_default 50 --feed_ttl_default 3600" .
+ " --since_hours_posts_per_rss 168 --min_posts_per_rss 2 --max_posts_per_rss 400 )");
+}
+
+function strParam($name) {
+ return isset($options[$name]) ? strval($options[$name]) : null;
+}
+
+function intParam($name) {
+ return isset($options[$name]) && ctype_digit($options[$name]) ? intval($options[$name]) : null;
+}
+
+$values = array(
+ 'language' => strParam('language'),
+ 'mail_login' => strParam('email'),
+ 'token' => strParam('token'),
+ 'old_entries' => intParam('purge_after_months'),
+ 'keep_history_default' => intParam('feed_min_articles_default'),
+ 'ttl_default' => intParam('feed_ttl_default'),
+ 'since_hours_posts_per_rss' => intParam('since_hours_posts_per_rss'),
+ 'min_posts_per_rss' => intParam('min_posts_per_rss'),
+ 'max_posts_per_rss' => intParam('max_posts_per_rss'),
+ );