4 * StatusNet - a distributed open-source microblogging tool
5 * Copyright (C) 2008, 2009, StatusNet, Inc.
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
23 $shortoptions = 'i:n:a';
24 $longoptions = array('id=', 'nickname=', 'all');
26 $helptext = <<<END_OF_UPDATEAVATARURL_HELP
27 updateavatarurl.php [options]
28 update the URLs of all avatars in the system
30 -i --id ID of user to update
31 -n --nickname nickname of the user to update
34 END_OF_UPDATEAVATARURL_HELP;
36 require_once INSTALLDIR.'/scripts/commandline.inc';
41 if (have_option('i', 'id')) {
42 $id = get_option_value('i', 'id');
43 $user = User::staticGet('id', $id);
45 throw new Exception("Can't find user with id '$id'.");
48 } else if (have_option('n', 'nickname')) {
49 $nickname = get_option_value('n', 'nickname');
50 $user = User::staticGet('nickname', $nickname);
52 throw new Exception("Can't find user with nickname '$nickname'");
55 } else if (have_option('a', 'all')) {
58 while ($user->fetch()) {
66 } catch (Exception $e) {
67 print $e->getMessage()."\n";
71 function updateAvatars($user)
75 if (!have_option('q', 'quiet')) {
76 print "Updating avatars for user '".$user->nickname."' (".$user->id.")...";
79 $avatar = new Avatar();
81 $avatar->profile_id = $user->id;
83 if (!$avatar->find()) {
84 if (have_option('v', 'verbose')) {
85 print "(none found)...";
88 while ($avatar->fetch()) {
89 if (have_option('v', 'verbose')) {
90 if ($avatar->original) {
93 print $avatar->width."...";
97 $orig = clone($avatar);
99 $avatar->url = Avatar::url($avatar->filename);
101 if ($avatar->url != $orig->url) {
103 "UPDATE avatar SET url = '" . $avatar->url . "' ".
104 "WHERE profile_id = " . $avatar->profile_id . " ".
105 "AND width = " . $avatar->width . " " .
106 "AND height = " . $avatar->height . " ";
108 if ($avatar->original) {
109 $sql .= "AND original = 1 ";
112 if (!$avatar->query($sql)) {
113 throw new Exception("Can't update avatar for user " . $user->nickname . ".");
122 $profile = $user->getProfile();
123 common_broadcast_profile($profile);
126 if (have_option('v', 'verbose')) {
129 if (!have_option('q', 'quiet') || have_option('v', 'verbose')) {