2 # mw - VCS-like nonsense for MediaWiki websites
3 # Copyright (C) 2009 Ian Weller <ian@ianweller.org>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 from optparse import OptionParser, OptionGroup
27 class CommandBase(object):
28 def __init__(self, name, description, usage=None):
29 self.me = os.path.basename(sys.argv[0])
30 self.description = description
32 usage = '%prog ' + name
33 self.parser = OptionParser(usage=usage, description=description)
35 self.metadir = mw.metadir.Metadir()
36 global_options = OptionGroup(self.parser, "Global Options")
37 global_options.add_option('-u', '--use-auth', action='store_true',
38 dest='use_auth', help='force authentication '
39 'even if not required')
40 self.parser.add_option_group(global_options)
44 (self.options, self.args) = self.parser.parse_args()
45 self.args = self.args[1:] # don't need the first thing
49 user = raw_input('Username: ')
50 passwd = getpass.getpass()
52 def _die_if_no_init(self):
53 if self.metadir.config is None:
54 print '%s: not a mw repo' % self.me
58 self.api_url = self.metadir.config.get('remote', 'api_url')
59 self.api = mw.api.API(self.api_url)
62 class InitCommand(CommandBase):
64 usage = '%prog init API_URL'
65 CommandBase.__init__(self, 'init', 'start a mw repo', usage)
67 def _do_command(self):
68 if len(self.args) < 1:
69 self.parser.error('must have URL to remote api.php')
70 elif len(self.args) > 1:
71 self.parser.error('too many arguments')
72 self.metadir.create(self.args[0])
75 class FetchCommand(CommandBase):
77 usage = '%prog fetch [options] PAGENAME ...'
78 CommandBase.__init__(self, 'fetch', 'fetch remote pages', usage)
79 self.shortcuts.append('ft')
81 def _do_command(self):
82 self._die_if_no_init()
86 for these_pages in [pages[i:i+25] for i in range(0, len(pages), 25)]:
89 'titles': '|'.join(these_pages),
90 'prop': 'info|revisions',
91 'rvprop': 'ids|flags|timestamp|user|comment|content',
93 response = self.api.call(data)['query']['pages']
94 for pageid in response.keys():
95 revid = [x['revid'] for x in response[pageid]['revisions']]
96 self.metadir.add_page_info(int(pageid),
97 response[pageid]['title'],
99 self.metadir.add_rv_info(response[pageid]['revisions'][0])
100 fd = file(os.path.join(self.metadir.root, \
101 response[pageid]['title'].replace(' ', '_') + \
103 fd.write(response[pageid]['revisions'][0]['*'].encode('utf-8'))