4 * StatusNet - a distributed open-source microblogging tool
5 * Copyright (C) 2010 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 $longoptions = array('dry-run');
25 $helptext = <<<END_OF_USERROLE_HELP
26 fixup_files.php [options]
27 Patches up file entries with corrupted types and titles (the "h bug").
29 --dry-run look but don't touch
33 require_once INSTALLDIR.'/scripts/commandline.inc';
35 $dry = have_option('dry-run');
43 echo "Found $f->N bad items:\n";
46 echo "$f->id $f->url";
48 $data = File_redirection::lookupWhere($f->url);
50 if (is_array($data)) {
51 echo " (unchanged)\n";
53 echo " (unchanged, but embedding lookup failed)\n";
56 // NULL out the mime/title/size/protected fields
57 $sql = sprintf("UPDATE file " .
58 "SET mimetype=null,title=null,size=null,protected=null " .
64 if (is_array($data)) {
65 if ($f->saveOembed($data, $f->url)) {
68 echo " (ok, no embedding data)\n";
71 echo " (ok, but embedding lookup failed)\n";