forked from GNUsocial/gnu-social
Merge branch '0.9.x' into 1.0.x
Conflicts: EVENTS.txt lib/imqueuehandler.php lib/jabber.php lib/util.php plugins/Xmpp/Sharing_XMPP.php
This commit is contained in:
70
scripts/clearcache.php
Normal file
70
scripts/clearcache.php
Normal file
@@ -0,0 +1,70 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
/*
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2009, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
|
||||
|
||||
$shortoptions = "t:c:v:k:";
|
||||
|
||||
$helptext = <<<ENDOFHELP
|
||||
USAGE: clearcache.php <args>
|
||||
clears the cached object based on the args
|
||||
|
||||
-t table Table to look up
|
||||
-c column Column to look up, default "id"
|
||||
-v value Value to look up
|
||||
-k key Key to look up; other args are ignored
|
||||
|
||||
ENDOFHELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
$karg = get_option_value('k');
|
||||
|
||||
if (!empty($karg)) {
|
||||
$k = common_cache_key($karg);
|
||||
} else {
|
||||
$table = get_option_value('t');
|
||||
if (empty($table)) {
|
||||
die("No table or key specified\n");
|
||||
}
|
||||
$column = get_option_value('c');
|
||||
if (empty($column)) {
|
||||
$column = 'id';
|
||||
}
|
||||
$value = get_option_value('v');
|
||||
|
||||
$k = Memcached_DataObject::cacheKey($table, $column, $value);
|
||||
}
|
||||
|
||||
print "Clearing key '$k'...";
|
||||
|
||||
$c = common_memcache();
|
||||
|
||||
if (empty($c)) {
|
||||
die("Can't initialize cache object!\n");
|
||||
}
|
||||
|
||||
$result = $c->delete($k);
|
||||
|
||||
if ($result) {
|
||||
print "OK.\n";
|
||||
} else {
|
||||
print "FAIL.\n";
|
||||
}
|
||||
@@ -1,5 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# live fast! die young!
|
||||
|
||||
set -e
|
||||
|
||||
source /etc/statusnet/setup.cfg
|
||||
|
||||
export nickname=$1
|
||||
|
||||
@@ -109,7 +109,13 @@ class QueueDaemon extends SpawningDaemon
|
||||
|
||||
$master = new QueueMaster($this->get_id());
|
||||
$master->init($this->all);
|
||||
$master->service();
|
||||
try {
|
||||
$master->service();
|
||||
} catch (Exception $e) {
|
||||
common_log(LOG_ERR, "Unhandled exception: " . $e->getMessage() . ' ' .
|
||||
str_replace("\n", " ", $e->getTraceAsString()));
|
||||
return self::EXIT_ERR;
|
||||
}
|
||||
|
||||
$this->log(LOG_INFO, 'finished servicing the queue');
|
||||
|
||||
|
||||
82
scripts/sendemail.php
Executable file
82
scripts/sendemail.php
Executable file
@@ -0,0 +1,82 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
/*
|
||||
* StatusNet - a distributed open-source microblogging tool
|
||||
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
|
||||
|
||||
$shortoptions = 'i:n:';
|
||||
$longoptions = array('id=', 'nickname=', 'subject=');
|
||||
|
||||
$helptext = <<<END_OF_USEREMAIL_HELP
|
||||
sendemail.php [options] < <message body>
|
||||
Sends given email text to user.
|
||||
|
||||
-i --id id of the user to query
|
||||
-n --nickname nickname of the user to query
|
||||
--subject mail subject line (required)
|
||||
|
||||
END_OF_USEREMAIL_HELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
if (have_option('i', 'id')) {
|
||||
$id = get_option_value('i', 'id');
|
||||
$user = User::staticGet('id', $id);
|
||||
if (empty($user)) {
|
||||
print "Can't find user with ID $id\n";
|
||||
exit(1);
|
||||
}
|
||||
} else if (have_option('n', 'nickname')) {
|
||||
$nickname = get_option_value('n', 'nickname');
|
||||
$user = User::staticGet('nickname', $nickname);
|
||||
if (empty($user)) {
|
||||
print "Can't find user with nickname '$nickname'\n";
|
||||
exit(1);
|
||||
}
|
||||
} else {
|
||||
print "You must provide a user by --id or --nickname\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (empty($user->email)) {
|
||||
// @fixme unconfirmed address?
|
||||
print "No email registered for user '$user->nickname'\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (!have_option('subject')) {
|
||||
echo "You must provide a subject line for the mail in --subject='...' param.\n";
|
||||
exit(1);
|
||||
}
|
||||
$subject = get_option_value('subject');
|
||||
|
||||
if (posix_isatty(STDIN)) {
|
||||
print "You must provide message input on stdin!\n";
|
||||
exit(1);
|
||||
}
|
||||
$body = file_get_contents('php://stdin');
|
||||
|
||||
print "Sending to $user->email...";
|
||||
if (mail_to_user($user, $subject, $body)) {
|
||||
print " done\n";
|
||||
} else {
|
||||
print " failed.\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
16
scripts/setconfig.php
Normal file → Executable file
16
scripts/setconfig.php
Normal file → Executable file
@@ -28,6 +28,7 @@ setconfig.php [options] [section] [setting] <value>
|
||||
With three args, set the setting to the value.
|
||||
With two args, just show the setting.
|
||||
With -d, delete the setting.
|
||||
With no args, lists all currently set values.
|
||||
|
||||
[section] section to use (required)
|
||||
[setting] setting to use (required)
|
||||
@@ -39,6 +40,21 @@ END_OF_SETCONFIG_HELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
if (empty($args)) {
|
||||
$count = 0;
|
||||
$config = new Config();
|
||||
$config->find();
|
||||
while ($config->fetch()) {
|
||||
$count++;
|
||||
printf("%-20s %-20s %s\n", $config->section, $config->setting,
|
||||
var_export($config->value, true));
|
||||
}
|
||||
if ($count == 0) {
|
||||
print "No configuration set in database for this site.\n";
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
|
||||
if (count($args) < 2 || count($args) > 3) {
|
||||
show_help();
|
||||
exit(1);
|
||||
|
||||
84
scripts/settag.php
Normal file
84
scripts/settag.php
Normal file
@@ -0,0 +1,84 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
/*
|
||||
* StatusNet - a distributed open-source microblogging tool
|
||||
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
|
||||
|
||||
$shortoptions = 'd';
|
||||
$longoptions = array('delete');
|
||||
|
||||
$helptext = <<<END_OF_SETTAG_HELP
|
||||
settag.php [options] <site> <tag>
|
||||
Set the tag <tag> for site <site>.
|
||||
|
||||
With -d, delete the tag.
|
||||
|
||||
END_OF_SETTAG_HELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
if (count($args) != 2) {
|
||||
show_help();
|
||||
exit(1);
|
||||
}
|
||||
|
||||
$nickname = $args[0];
|
||||
$tag = strtolower($args[1]);
|
||||
|
||||
$sn = Status_network::memGet('nickname', $nickname);
|
||||
|
||||
if (empty($sn)) {
|
||||
print "No such site.\n";
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
$tags = $sn->getTags();
|
||||
|
||||
$i = array_search($tag, $tags);
|
||||
|
||||
if ($i !== false) {
|
||||
if (have_option('d', 'delete')) { // Delete
|
||||
unset($tags[$i]);
|
||||
|
||||
$orig = clone($sn);
|
||||
$sn->tags = implode('|', $tags);
|
||||
$result = $sn->update($orig);
|
||||
if (!$result) {
|
||||
print "Couldn't update.\n";
|
||||
exit(-1);
|
||||
}
|
||||
} else {
|
||||
print "Already set.\n";
|
||||
exit(-1);
|
||||
}
|
||||
} else {
|
||||
if (have_option('d', 'delete')) { // Delete
|
||||
print "No such tag.\n";
|
||||
exit(-1);
|
||||
} else {
|
||||
$tags[] = $tag;
|
||||
$orig = clone($sn);
|
||||
$sn->tags = implode('|', $tags);
|
||||
$result = $sn->update($orig);
|
||||
if (!$result) {
|
||||
print "Couldn't update.\n";
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -11,4 +11,8 @@ export AVATARBASE=/var/www/avatar.example.net
|
||||
export BACKGROUNDBASE=/var/www/background.example.net
|
||||
export FILEBASE=/var/www/file.example.net
|
||||
export PWDGEN="pwgen 20"
|
||||
|
||||
export PHPBASE=/var/www/statusnet
|
||||
export WILDCARD=example.net
|
||||
export MAILTEMPLATE=/etc/statusnet/newsite-mail.txt
|
||||
export MAILSUBJECT="Your new StatusNet site"
|
||||
export POSTINSTALL=/etc/statusnet/morestuff.sh
|
||||
|
||||
@@ -1,10 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
# live fast! die young!
|
||||
|
||||
set -e
|
||||
|
||||
source /etc/statusnet/setup.cfg
|
||||
|
||||
export nickname=$1
|
||||
export sitename=$2
|
||||
# setup_status_net.sh mysite 'My Site' '1user' 'owner@example.com' 'Firsty McLastname'
|
||||
|
||||
export nickname="$1"
|
||||
export sitename="$2"
|
||||
export tags="$3"
|
||||
export email="$4"
|
||||
export fullname="$5"
|
||||
|
||||
# Fixme: if this is changed later we need to update profile URLs
|
||||
# for the created user.
|
||||
export server="$nickname.$WILDCARD"
|
||||
|
||||
# End-user info
|
||||
export userpass=`$PWDGEN`
|
||||
export roles="administrator moderator owner"
|
||||
|
||||
# DB info
|
||||
export password=`$PWDGEN`
|
||||
export database=$nickname$DBBASE
|
||||
export username=$nickname$USERBASE
|
||||
@@ -21,8 +39,8 @@ mysql -h $DBHOST -u $ADMIN --password=$ADMINPASS $SITEDB << ENDOFCOMMANDS
|
||||
|
||||
GRANT ALL ON $database.* TO '$username'@'localhost' IDENTIFIED BY '$password';
|
||||
GRANT ALL ON $database.* TO '$username'@'%' IDENTIFIED BY '$password';
|
||||
INSERT INTO status_network (nickname, dbhost, dbuser, dbpass, dbname, sitename, created)
|
||||
VALUES ('$nickname', '$DBHOSTNAME', '$username', '$password', '$database', '$sitename', now());
|
||||
INSERT INTO status_network (nickname, dbhost, dbuser, dbpass, dbname, sitename, created, tags)
|
||||
VALUES ('$nickname', '$DBHOSTNAME', '$username', '$password', '$database', '$sitename', now(), '$tags');
|
||||
|
||||
ENDOFCOMMANDS
|
||||
|
||||
@@ -30,3 +48,39 @@ for top in $AVATARBASE $FILEBASE $BACKGROUNDBASE; do
|
||||
mkdir $top/$nickname
|
||||
chmod a+w $top/$nickname
|
||||
done
|
||||
|
||||
php $PHPBASE/scripts/registeruser.php \
|
||||
-s"$server" \
|
||||
-n"$nickname" \
|
||||
-f"$fullname" \
|
||||
-w"$userpass" \
|
||||
-e"$email"
|
||||
|
||||
for role in $roles
|
||||
do
|
||||
php $PHPBASE/scripts/userrole.php \
|
||||
-s"$server" \
|
||||
-n"$nickname" \
|
||||
-r"$role"
|
||||
done
|
||||
|
||||
if [ -f "$MAILTEMPLATE" ]
|
||||
then
|
||||
# fixme how safe is this? are sitenames sanitized?
|
||||
cat $MAILTEMPLATE | \
|
||||
sed "s/\$nickname/$nickname/" | \
|
||||
sed "s/\$sitename/$sitename/" | \
|
||||
sed "s/\$userpass/$userpass/" | \
|
||||
php $PHPBASE/scripts/sendemail.php \
|
||||
-s"$server" \
|
||||
-n"$nickname" \
|
||||
--subject="$MAILSUBJECT"
|
||||
else
|
||||
echo "No mail template, not sending email."
|
||||
fi
|
||||
|
||||
if [ -f "$POSTINSTALL" ]
|
||||
then
|
||||
echo "Running $POSTINSTALL ..."
|
||||
source "$POSTINSTALL"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user