]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Bookmark/importbookmarks.php
don't reinsert existing bookmark
[quix0rs-gnu-social.git] / plugins / Bookmark / importbookmarks.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010 StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../..'));
21
22 $shortoptions = 'i:n:f:';
23 $longoptions = array('id=', 'nickname=', 'file=');
24
25 $helptext = <<<END_OF_IMPORTBOOKMARKS_HELP
26     importbookmarks.php [options]
27     Restore a backed-up Delicious.com bookmark file
28
29     -i --id       ID of user to import bookmarks for
30     -n --nickname nickname of the user to import for
31     -f --file     file to read from (STDIN by default)
32 END_OF_IMPORTBOOKMARKS_HELP;
33
34 require_once INSTALLDIR.'/scripts/commandline.inc';
35
36 function getBookmarksFile()
37 {
38     $filename = get_option_value('f', 'file');
39
40     if (empty($filename)) {
41         show_help();
42         exit(1);
43     }
44
45     if (!file_exists($filename)) {
46         throw new Exception("No such file '$filename'.");
47     }
48
49     if (!is_file($filename)) {
50         throw new Exception("Not a regular file: '$filename'.");
51     }
52
53     if (!is_readable($filename)) {
54         throw new Exception("File '$filename' not readable.");
55     }
56
57     // TRANS: Commandline script output. %s is the filename that contains a backup for a user.
58     printfv(_("Getting backup from file '%s'.")."\n",$filename);
59
60     $html = file_get_contents($filename);
61
62         return $html;
63 }
64
65 try {
66         $dbi = new DeliciousBackupImporter();
67
68         $user = getUser();
69
70     $html = getBookmarksFile();
71
72         $dbi->importBookmarks($user, $html);
73
74 } catch (Exception $e) {
75     print $e->getMessage()."\n";
76     exit(1);
77 }