eisen-dev/eisen_engine

View on GitHub

Showing 44 of 44 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

def __init__(self):
self.reqparse = reqparse.RequestParser()
self.reqparse.add_argument('module', type=str, required=True,
help='No task title provided',
location='json')
Severity: Major
Found in resources/package_retrive.py and 1 other location - About 4 hrs to fix
resources/AgentInfo.py on lines 43..51

File PackageListUpdate.py has 337 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# coding=utf-8
# (c) 2015, Alice Ferrazzi <alice.ferrazzi@gmail.com>
#
# This file is part of Eisen
#
Severity: Minor
Found in core/PackageListUpdate.py - About 4 hrs to fix

    Function get_all_package has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_all_package(target_host_ip, command, target_host_os):
    delete_repository_package_db(target_host_ip)
    a= AnsibleV1Inv.get_inv()
    packages = RunTask(target_host_ip, command,"shell",a)
    if target_host_os == 'Ubuntu':
    Severity: Minor
    Found in core/PackageListUpdate.py - About 3 hrs to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    def RecipesStart():
    """
    example init task
     
     
     
    Severity: Major
    Found in core/AnsibleV1Wrap.py and 1 other location - About 2 hrs to fix
    core/AnsibleV1Wrap.py on lines 164..179

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    def TasksStart():
    """
    example init task
     
    :rtype: object
    Severity: Major
    Found in core/AnsibleV1Wrap.py and 1 other location - About 2 hrs to fix
    core/AnsibleV1Wrap.py on lines 181..197

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    host = {
    'id': hosts[-1]['id'] + 1,
    'host': args['host'],
    'variable_name': args['variable_key'],
    'variable_key': args['variable_value'],
    Severity: Major
    Found in resources/HostsList.py and 1 other location - About 2 hrs to fix
    resources/package_retrive.py on lines 61..65

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    pack = {
    'id': packs[-1]['id'] + 1,
    'target_host': args['target_host'],
    'target_os': args['target_os'],
    'command': args['command'],
    Severity: Major
    Found in resources/package_retrive.py and 1 other location - About 2 hrs to fix
    resources/HostsList.py on lines 173..177

    Function package_update has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

    def package_update(targetHost, os, command):
    if os == 'Raspbian':
    os = 'Ubuntu'
    print (
    '\n------------------------------------' + targetHost
    Severity: Minor
    Found in core/PackageListUpdate.py - About 1 hr to fix

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    try:
    thr1 = Thread(target=get_all_package, args=[targetHost, command_all, os])
    thr1.start()
    except Exception as e:
    print(traceback.format_exc())
    Severity: Major
    Found in core/PackageListUpdate.py and 2 other locations - About 1 hr to fix
    core/PackageListUpdate.py on lines 42..47
    core/PackageListUpdate.py on lines 49..53

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    if command == 'respository':
    try:
    thr1 = Thread(target=get_all_package, args=[targetHost, command_all, os])
    thr1.start()
    except Exception as e:
    Severity: Major
    Found in core/PackageListUpdate.py and 2 other locations - About 1 hr to fix
    core/PackageListUpdate.py on lines 49..53
    core/PackageListUpdate.py on lines 54..58

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    try:
    thr = Thread(target=get_installed_package, args=[targetHost, command_installed, os])
    thr.start()
    except Exception as e:
    print(traceback.format_exc())
    Severity: Major
    Found in core/PackageListUpdate.py and 2 other locations - About 1 hr to fix
    core/PackageListUpdate.py on lines 42..47
    core/PackageListUpdate.py on lines 54..58

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    if id < 0:
    return make_response(jsonify({'message': 'Id '+str(id+1)+' not exist'}), 403)
    Severity: Major
    Found in resources/HostsList.py and 1 other location - About 1 hr to fix
    resources/HostsList.py on lines 156..157

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    except:
    return make_response(jsonify({'message': 'Id '+str(id+1)+' not found'}), 403)
    Severity: Major
    Found in resources/HostsList.py and 1 other location - About 1 hr to fix
    resources/HostsList.py on lines 150..151

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    try:
    package_line = packages['contacted'][target_host_ip]['stdout']
    except Exception, error:
    print error
    pass
    Severity: Minor
    Found in core/PackageListUpdate.py and 1 other location - About 50 mins to fix
    core/PackageListUpdate.py on lines 92..96

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    try:
    dpkg_lines = packages['contacted'][target_host_ip]['stdout']
    except Exception, error:
    print error
    pass
    Severity: Minor
    Found in core/PackageListUpdate.py and 1 other location - About 50 mins to fix
    core/PackageListUpdate.py on lines 123..127

    Function PackageAction has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def PackageAction(module, hosts, command, mod, id, pack):
    Severity: Minor
    Found in core/dispatcher.py - About 45 mins to fix

      Similar blocks of code found in 3 locations. Consider refactoring.
      Open

      if pack['packageAction'] == 'install':
      print 'install package'
      result_string = Thread(target=os_install_command,args=[pack])
      result_string.start()
      return str(result_string)
      Severity: Major
      Found in core/package_work.py and 2 other locations - About 40 mins to fix
      core/package_work.py on lines 27..31
      core/package_work.py on lines 32..36

      Similar blocks of code found in 3 locations. Consider refactoring.
      Open

      elif pack['packageAction'] == 'delete':
      print 'deleting package'
      result_string = Thread(target=os_remove_command,args=[pack])
      result_string.start()
      return str(result_string)
      Severity: Major
      Found in core/package_work.py and 2 other locations - About 40 mins to fix
      core/package_work.py on lines 22..26
      core/package_work.py on lines 27..31

      Similar blocks of code found in 3 locations. Consider refactoring.
      Open

      elif pack['packageAction'] == 'update':
      print 'update package'
      result_string = Thread(target=os_update_command,args=[pack])
      result_string.start()
      return str(result_string)
      Severity: Major
      Found in core/package_work.py and 2 other locations - About 40 mins to fix
      core/package_work.py on lines 22..26
      core/package_work.py on lines 32..36

      Function update_installed_package_db has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def update_installed_package_db(package_name,package_version,package_summary,
      Severity: Minor
      Found in core/PackageListUpdate.py - About 35 mins to fix
        Severity
        Category
        Status
        Source
        Language