aboutsummaryrefslogtreecommitdiff
path: root/examples/refresh-yum-repo.py
blob: 4131ccab79d3b778fcf33b56f7704ec78fae0702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/python
# vim: set fileencoding=utf-8 :
#
# (C) 2014 Guido Gunther <agx@sigxcpu.org>
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program 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 General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program; if not, write to the Free Software
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import logging
import optparse
import sys

from industriart.artifactory import Artifactory, ArtifactoryError

def setup_logging(debug=False):
    logging.getLogger('industriart').addHandler(logging.StreamHandler())

    logger = logging.getLogger()
    level = logging.DEBUG if debug else logging.INFO
    logger.setLevel(level)



def main():
    parser = optparse.OptionParser()

    parser.add_option('-d', '--debug',
                      action="store_true",
                      default=False,
                      dest="debug",
                      help='Be more verbose.')
    parser.add_option('-a', '--artifactory-base',
                      dest="base",
                      help='Artifactory base URL to use.')
    parser.add_option('-u', '--user',
                      dest="user",
                      help='Artifactory user to use.')
    parser.add_option('-p', '--password',
                      dest="password",
                      help='Artifactory user\'s password to use.')

    (options, args) = parser.parse_args()
    setup_logging(options.debug)

    if options.base is None:
        logging.error("Artifactory url must be given.")
        return 1
    else:
        artifactory = Artifactory(options.base,
                                  options.user,
                                  options.password)

    if not len(args):
        logging.error("Which repo should I refresh?")
        return 1

    ret = 0
    for repo in args:
        try:
            msg = artifactory.calc_yum_metadata(repo)
            logging.info(msg)
        except ArtifactoryError as e:
            ret = 1
            logging.error("Refresh of %s failed with %d: %s",
                          e.url, e.status_code, str(e))

    return ret


if __name__ == '__main__':
    sys.exit(main())