12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- define('INSTALLDIR', dirname(__DIR__, 3));
- define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
- $shortoptions = 'i:n:au';
- $longoptions = array('id=', 'nickname=', 'all', 'universe');
- $helptext = <<<END_OF_SENDEMAILSUMMARY_HELP
- sendemailsummary.php [options]
- Send an email summary of the inbox to users
- -i --id ID of user to send summary to
- -n --nickname nickname of the user to send summary to
- -a --all send summary to all users
- -u --universe send summary to all users on all sites
- END_OF_SENDEMAILSUMMARY_HELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- if (have_option('u', 'universe')) {
- $sn = new Status_network();
- if ($sn->find()) {
- while ($sn->fetch()) {
- $server = $sn->getServerName();
- GNUsocial::init($server);
-
- $qm = QueueManager::get();
- $qm->enqueue(1, 'sitesum');
- }
- }
- } else {
- $qm = QueueManager::get();
-
- try {
- $user = getUser();
- $qm->enqueue($user->id, 'usersum');
- } catch (NoUserArgumentException $nuae) {
- $qm->enqueue(1, 'sitesum');
- }
- }
|