summaryrefslogtreecommitdiff
path: root/_darcs/tentative_pristine
blob: 15afe3e0994caa38384093a7a0f1fda7ad5b217c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
hunk ./actions/facebookhome.php 39
-        $facebook = $this->get_facebook();
+        $facebook = get_facebook();
hunk ./actions/facebookinvite.php 37
-        $facebook = $this->get_facebook();
+        $facebook = get_facebook();
hunk ./actions/facebooksettings.php 37
-        $facebook = $this->get_facebook();
+        $facebook = get_facebook();
hunk ./actions/facebooksettings.php 47
+        $fbml .= '<fb:prompt-permission perms="status_update"><h2>Allow Identi.ca to update my Facebook status</h2></fb:prompt-permission>';
+
hunk ./classes/Foreign_link.php 7
-class Foreign_link extends Memcached_DataObject 
+class Foreign_link extends Memcached_DataObject
hunk ./classes/Foreign_link.php 16
-    public $credentials;                     // varchar(255)  
+    public $credentials;                     // varchar(255)
hunk ./classes/Foreign_link.php 32
-    static function getByUserID($user_id, $service) {
+    static function getByUserID($user_id, $service)
+    {
hunk ./classes/Foreign_link.php 43
-        return null;        
+        return null;
hunk ./classes/Foreign_link.php 45
-    
-    static function getByForeignID($foreign_id, $service) {
+
+    static function getByForeignID($foreign_id, $service)
+    {
hunk ./classes/Foreign_link.php 57
-        return null;        
+        return null;
hunk ./classes/Foreign_link.php 59
-        
+
hunk ./classes/Foreign_link.php 62
-    {        
+    {
hunk ./classes/Foreign_link.php 66
-        
+
hunk ./classes/Foreign_link.php 68
-        
+
hunk ./classes/Foreign_link.php 72
-        
-        return null;        
+
+        return null;
hunk ./classes/Foreign_link.php 75
-    
+
hunk ./classes/Foreign_link.php 80
-        
+
hunk ./lib/facebookaction.php 22
-require_once(INSTALLDIR.'/extlib/facebook/facebook.php');
+require_once(INSTALLDIR.'/lib/facebookutil.php');
+
hunk ./lib/facebookaction.php 32
-
-    function get_facebook()
-    {
-        $apikey = common_config('facebook', 'apikey');
-        $secret = common_config('facebook', 'secret');
-        return new Facebook($apikey, $secret);
-    }
addfile ./lib/facebookutil.php
hunk ./lib/facebookutil.php 1
+<?php
+/*
+ * Laconica - a distributed open-source microblogging tool
+ * Copyright (C) 2008, Controlez-Vous, 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/>.
+ */
+
+require_once(INSTALLDIR.'/extlib/facebook/facebook.php');
+
+// Gets all the notices from users with a Facebook link since a given ID
+function get_facebook_notices($since)
+{
+    $qry = 'SELECT notice.* ' .
+        'FROM notice ' .
+        'JOIN foreign_link ' .
+        'WHERE notice.profile_id = foreign_link.user_id ' .
+        'AND foreign_link.service = 2';
+
+    // XXX: What should the limit be?
+    return Notice::getStreamDirect($qry, 0, 100, 0, 0, null, $since);
+}
+
+function get_facebook()
+{
+    $apikey = common_config('facebook', 'apikey');
+    $secret = common_config('facebook', 'secret');
+    return new Facebook($apikey, $secret);
+}
addfile ./scripts/update_facebook.php
hunk ./scripts/update_facebook.php 1
+#!/usr/bin/env php
+<?php
+/*
+ * Laconica - a distributed open-source microblogging tool
+ * Copyright (C) 2008, Controlez-Vous, 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/>.
+ */
+
+# Abort if called from a web server
+if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
+    print "This script must be run from the command line\n";
+    exit();
+}
+
+define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
+define('LACONICA', true);
+
+require_once(INSTALLDIR . '/lib/common.php');
+require_once(INSTALLDIR . '/lib/facebookutil.php');
+
+// For storing the last run date-time
+$last_updated_file = "/home/zach/laconica/scripts/facebook_last_updated";
+
+// Lock file name
+$tmp_file = "/tmp/update_facebook.lock";
+
+// Make sure only one copy of the script is running at a time
+if (!($tmp_file = @fopen($tmp_file, "w")))
+{
+	die("Can't open lock file. Script already running?");
+}
+
+$facebook = get_facebook();
+
+$current_time = time();
+
+$notice = get_facebook_notices(get_last_updated());
+
+while($notice->fetch()) {
+
+    $flink = Foreign_link::getByUserID($notice->profile_id, 2);
+    $fbuid = $flink->foreign_id;
+
+    update_status($fbuid, $notice);
+
+}
+
+update_last_updated($current_time);
+
+exit(0);
+
+
+
+function update_status($fbuid, $notice) {
+    global $facebook;
+
+    try {
+
+        $result = $facebook->api_client->users_setStatus($notice->content, $fbuid, false, true);
+
+    } catch(FacebookRestClientException $e){
+
+    	print_r($e);
+    }
+
+}
+
+function get_last_updated(){
+	global $last_updated_file, $current_time;
+
+	$file = fopen($last_updated_file, 'r');
+
+	if ($file) {
+	    $last = fgets($file);
+	} else {
+	    print "Unable to read $last_updated_file. Using current time.\n";
+	    return $current_time;
+	}
+
+	fclose($file);
+
+	return $last;
+}
+
+function update_last_updated($time){
+	global $last_updated_file;
+	$file = fopen($last_updated_file, 'w') or die("Can't open $last_updated_file for writing!");
+	fwrite($file, $time);
+	fclose($file);
+}