1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
- $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');
- }
- }
|