#!/usr/bin/python

#
# Copyright 2014 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public
# License as published by the Free Software Foundation; either version
# 2 of the License (GPLv2) or (at your option) any later version.
# There is NO WARRANTY for this software, express or implied,
# including the implied warranties of MERCHANTABILITY,
# NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
# have received a copy of GPLv2 along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
#

import optparse

from katello.packages import purge_package_cache, upload_package_profile
from katello.constants import PACKAGE_PROFILE_PLUGIN_CONF, DISABLE_PACKAGE_PROFILE_VAR

def parse_args():
    description = 'This report can be disabled by either disabling the package management plugin in ' + \
              PACKAGE_PROFILE_PLUGIN_CONF + ' or via the environment variable ' + DISABLE_PACKAGE_PROFILE_VAR
    parser = optparse.OptionParser(description=description)
    parser.add_option('-f', '--force', help="Force package upload even if it does not seem out of date.", action='store_true')
    return parser.parse_args()


def main():
    (options, args) = parse_args()
    if options.force:
        purge_package_cache()
    upload_package_profile(options.force)


if __name__ == "__main__":
    main()
