| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | #!/usr/bin/env php
 | 
					
						
							|  |  |  | <?php | 
					
						
							| 
									
										
										
										
											2020-06-10 16:52:00 +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/>.
 | 
					
						
							| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-15 04:10:29 +01:00
										 |  |  | define('INSTALLDIR', dirname(__DIR__)); | 
					
						
							|  |  |  | define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public'); | 
					
						
							| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | $shortoptions = 'y'; | 
					
						
							| 
									
										
										
										
											2020-06-10 16:52:00 +03:00
										 |  |  | $longoptions = ['yes']; | 
					
						
							| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | $helptext = <<<END_OF_HELP | 
					
						
							|  |  |  | clean_profiles.php [options] | 
					
						
							|  |  |  | Deletes all profile table entries where the profile does not occur in the | 
					
						
							| 
									
										
										
										
											2020-06-10 16:52:00 +03:00
										 |  |  | notice table, is not a group and is not a local user. | 
					
						
							| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | WARNING: This has not been tested thoroughly. Maybe we've missed a table to compare somewhere. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   -y --yes      do not wait for confirmation | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | END_OF_HELP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-10 16:52:00 +03:00
										 |  |  | require_once INSTALLDIR . '/scripts/commandline.inc'; | 
					
						
							| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | if (!have_option('y', 'yes')) { | 
					
						
							|  |  |  |     print "About to delete profiles that we think are useless to save. Are you sure? [y/N] "; | 
					
						
							|  |  |  |     $response = fgets(STDIN); | 
					
						
							|  |  |  |     if (strtolower(trim($response)) != 'y') { | 
					
						
							|  |  |  |         print "Aborting.\n"; | 
					
						
							|  |  |  |         exit(0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-10 16:52:00 +03:00
										 |  |  | echo 'Deleting'; | 
					
						
							| 
									
										
										
										
											2020-06-05 17:57:22 +00:00
										 |  |  | $user_table = common_database_tablename('user'); | 
					
						
							| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | $profile = new Profile(); | 
					
						
							| 
									
										
										
										
											2020-06-10 16:52:00 +03:00
										 |  |  | $profile->query( | 
					
						
							|  |  |  |     <<<END | 
					
						
							|  |  |  |     SELECT profile.* | 
					
						
							|  |  |  |       FROM profile | 
					
						
							|  |  |  |       LEFT JOIN ( | 
					
						
							|  |  |  |         SELECT profile_id AS id FROM notice | 
					
						
							|  |  |  |         UNION ALL | 
					
						
							|  |  |  |         SELECT id FROM {$user_table} | 
					
						
							|  |  |  |         UNION ALL | 
					
						
							|  |  |  |         SELECT profile_id AS id FROM user_group | 
					
						
							|  |  |  |         UNION ALL | 
					
						
							|  |  |  |         SELECT subscriber FROM subscription | 
					
						
							|  |  |  |         UNION ALL | 
					
						
							|  |  |  |         SELECT subscribed FROM subscription | 
					
						
							|  |  |  |       ) AS t1 USING (id) | 
					
						
							|  |  |  |       WHERE t1.id IS NULL | 
					
						
							|  |  |  |     END | 
					
						
							|  |  |  | ); | 
					
						
							| 
									
										
										
										
											2015-02-18 14:01:35 +01:00
										 |  |  | while ($profile->fetch()) { | 
					
						
							|  |  |  |     echo ' '.$profile->getID().':'.$profile->getNickname(); | 
					
						
							|  |  |  |     $profile->delete(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | print "\nDONE.\n"; |