| 
									
										
										
										
											2010-09-08 16:10:07 -04:00
										 |  |  | #!/usr/bin/env php
 | 
					
						
							|  |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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 GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @package   TwitterBridge | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2019-09-18 17:15:00 +03:00
										 |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2010-09-08 16:10:07 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-18 17:15:00 +03:00
										 |  |  | define('INSTALLDIR', dirname(__DIR__, 3)); | 
					
						
							|  |  |  | define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public'); | 
					
						
							| 
									
										
										
										
											2010-09-08 16:10:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | $helptext = <<<ENDOFHELP | 
					
						
							|  |  |  | USAGE: initialize_notice_to_status.php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Initializes the notice_to_status table with existing Twitter synch | 
					
						
							|  |  |  | data. Only necessary if you've had the Twitter bridge enabled before | 
					
						
							|  |  |  | version 0.9.5. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ENDOFHELP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require_once INSTALLDIR.'/scripts/commandline.inc'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // We update any notices that may have come in from
 | 
					
						
							|  |  |  | // Twitter that we don't have a status_id for. Note that
 | 
					
						
							|  |  |  | // this won't catch notices that originated at this StatusNet site.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $n = new Notice(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-11 09:46:30 +03:00
										 |  |  | $n->query( | 
					
						
							|  |  |  |     'SELECT notice.id, notice.uri ' . | 
					
						
							|  |  |  |     'FROM notice LEFT JOIN notice_to_status ' . | 
					
						
							|  |  |  |     'ON notice.id = notice_to_status.notice_id ' . | 
					
						
							|  |  |  |     "WHERE notice.source = 'twitter'" . | 
					
						
							|  |  |  |     'AND notice_to_status.status_id IS NULL' | 
					
						
							|  |  |  | ); | 
					
						
							| 
									
										
										
										
											2010-09-08 16:10:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | while ($n->fetch()) { | 
					
						
							| 
									
										
										
										
											2010-12-17 15:57:22 -08:00
										 |  |  |     if (preg_match('/^http://twitter.com(/#!)?/[\w_.]+/status/(\d+)$/', $n->uri, $match)) { | 
					
						
							| 
									
										
										
										
											2010-09-08 16:10:07 -04:00
										 |  |  |         $status_id = $match[1]; | 
					
						
							|  |  |  |         Notice_to_status::saveNew($n->id, $status_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |