~david-goetz/swift/zero_byte_obj_audit

« back to all changes in this revision

Viewing changes to bin/swauth-prep

  • Committer: FUJITA Tomonori
  • Date: 2011-01-13 18:42:21 UTC
  • mfrom: (163 swift)
  • mto: This revision was merged to the branch mainline in revision 165.
  • Revision ID: fujita.tomonori@lab.ntt.co.jp-20110113184221-wzn2po12pz2ojy8h
MergingĀ theĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# Copyright (c) 2010 OpenStack, LLC.
 
3
#
 
4
# Licensed under the Apache License, Version 2.0 (the "License");
 
5
# you may not use this file except in compliance with the License.
 
6
# You may obtain a copy of the License at
 
7
#
 
8
#    http://www.apache.org/licenses/LICENSE-2.0
 
9
#
 
10
# Unless required by applicable law or agreed to in writing, software
 
11
# distributed under the License is distributed on an "AS IS" BASIS,
 
12
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 
13
# implied.
 
14
# See the License for the specific language governing permissions and
 
15
# limitations under the License.
 
16
 
 
17
import gettext
 
18
from optparse import OptionParser
 
19
from os.path import basename
 
20
from sys import argv, exit
 
21
from urlparse import urlparse
 
22
 
 
23
from swift.common.bufferedhttp import http_connect_raw as http_connect
 
24
 
 
25
 
 
26
if __name__ == '__main__':
 
27
    gettext.install('swift', unicode=1)
 
28
    parser = OptionParser(usage='Usage: %prog [options]')
 
29
    parser.add_option('-A', '--admin-url', dest='admin_url',
 
30
        default='http://127.0.0.1:8080/auth/', help='The URL to the auth '
 
31
        'subsystem (default: http://127.0.0.1:8080/auth/')
 
32
    parser.add_option('-U', '--admin-user', dest='admin_user',
 
33
        default='.super_admin', help='The user with admin rights to add users '
 
34
        '(default: .super_admin).')
 
35
    parser.add_option('-K', '--admin-key', dest='admin_key',
 
36
        help='The key for the user with admin rights to add users.')
 
37
    args = argv[1:]
 
38
    if not args:
 
39
        args.append('-h')
 
40
    (options, args) = parser.parse_args(args)
 
41
    if args:
 
42
        parser.parse_args(['-h'])
 
43
    parsed = urlparse(options.admin_url)
 
44
    if parsed.scheme not in ('http', 'https'):
 
45
        raise Exception('Cannot handle protocol scheme %s for url %s' %
 
46
                        (parsed.scheme, repr(options.admin_url)))
 
47
    if not parsed.path:
 
48
        parsed.path = '/'
 
49
    elif parsed.path[-1] != '/':
 
50
        parsed.path += '/'
 
51
    path = '%sv2/.prep' % parsed.path
 
52
    headers = {'X-Auth-Admin-User': options.admin_user,
 
53
               'X-Auth-Admin-Key': options.admin_key}
 
54
    conn = http_connect(parsed.hostname, parsed.port, 'POST', path, headers,
 
55
                        ssl=(parsed.scheme == 'https'))
 
56
    resp = conn.getresponse()
 
57
    if resp.status // 100 != 2:
 
58
        print 'Auth subsystem prep failed: %s %s' % (resp.status, resp.reason)