]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/scripts/update-profile.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / plugins / OStatus / scripts / update-profile.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * StatusNet - a distributed open-source microblogging tool
5  * Copyright (C) 2010, StatusNet, Inc.
6  *
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.
11  *
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.
16  *
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/>.
19  */
20
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
22
23 $helptext = <<<END_OF_HELP
24 update-profile.php [options] http://example.com/profile/url
25
26 Rerun profile and feed info discovery for the given OStatus remote profile,
27 and reinitialize its PuSH subscription for the given feed. This may help get
28 things restarted if the hub or feed URLs have changed for the profile.
29
30
31 END_OF_HELP;
32
33 require_once INSTALLDIR.'/scripts/commandline.inc';
34
35 if (empty($args[0]) || !Validate::uri($args[0])) {
36     print "$helptext";
37     exit(1);
38 }
39
40 $uri = $args[0];
41
42
43 $oprofile = Ostatus_profile::staticGet('uri', $uri);
44
45 if (!$oprofile) {
46     print "No OStatus remote profile known for URI $uri\n";
47     exit(1);
48 }
49
50 print "Old profile state for $oprofile->uri\n";
51 showProfile($oprofile);
52
53 print "\n";
54 print "Re-running feed discovery for profile URL $oprofile->uri\n";
55 // @fixme will bork where the URI isn't the profile URL for now
56 $discover = new FeedDiscovery();
57 $feedurl = $discover->discoverFromURL($oprofile->uri);
58 $huburi = $discover->getAtomLink('hub');
59 $salmonuri = $discover->getAtomLink(Salmon::NS_REPLIES);
60
61 print "  Feed URL: $feedurl\n";
62 print "  Hub URL: $huburi\n";
63 print "  Salmon URL: $salmonuri\n";
64
65 if ($feedurl != $oprofile->feeduri || $salmonuri != $oprofile->salmonuri) {
66     print "\n";
67     print "Updating...\n";
68     // @fixme update keys :P
69     #$orig = clone($oprofile);
70     #$oprofile->feeduri = $feedurl;
71     #$oprofile->salmonuri = $salmonuri;
72     #$ok = $oprofile->update($orig);
73     $ok = $oprofile->query('UPDATE ostatus_profile SET ' .
74         'feeduri=\'' . $oprofile->escape($feedurl) . '\',' .
75         'salmonuri=\'' . $oprofile->escape($salmonuri) . '\' ' .
76         'WHERE uri=\'' . $oprofile->escape($uri) . '\'');
77
78     if (!$ok) {
79         print "Failed to update profile record...\n";
80         exit(1);
81     }
82
83     $oprofile->decache();
84 } else {
85     print "\n";
86     print "Ok, ostatus_profile record unchanged.\n\n";
87 }
88
89 $sub = FeedSub::ensureFeed($feedurl);
90
91 if ($huburi != $sub->huburi) {
92     print "\n";
93     print "Updating hub record for feed; was $sub->huburi\n";
94     $orig = clone($sub);
95     $sub->huburi = $huburi;
96     $ok = $sub->update($orig);
97
98     if (!$ok) {
99         print "Failed to update sub record...\n";
100         exit(1);
101     }
102 } else {
103     print "\n";
104     print "Feed record ok, not changing.\n\n";
105 }
106
107 print "\n";
108 print "Pinging hub $sub->huburi with new subscription for $sub->uri\n";
109 $ok = $sub->subscribe();
110
111 if ($ok) {
112     print "ok\n";
113 } else {
114     print "Could not confirm.\n";
115 }
116
117 $o2 = Ostatus_profile::staticGet('uri', $uri);
118
119 print "\n";
120 print "New profile state:\n";
121 showProfile($o2);
122
123 print "\n";
124 print "New feed state:\n";
125 $sub2 = FeedSub::ensureFeed($feedurl);
126 showSub($sub2);
127
128 function showProfile($oprofile)
129 {
130     print "  Feed URL: $oprofile->feeduri\n";
131     print "  Salmon URL: $oprofile->salmonuri\n";
132     print "  Avatar URL: $oprofile->avatar\n";
133     print "  Profile ID: $oprofile->profile_id\n";
134     print "  Group ID: $oprofile->group_id\n";
135     print "  Record created: $oprofile->created\n";
136     print "  Record modified: $oprofile->modified\n";
137 }
138
139 function showSub($sub)
140 {
141     print "  Subscription state: $sub->sub_state\n";
142     print "  Verify token: $sub->verify_token\n";
143     print "  Signature secret: $sub->secret\n";
144     print "  Sub start date: $sub->sub_start\n";
145     print "  Record created: $sub->created\n";
146     print "  Record modified: $sub->modified\n";
147 }