Esempio n. 1
0
def deleteAllPinsetDailyDetail():
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "DELETE FROM tarifica_pinsetdailydetail"
    am.cursor.execute(sql, ())
    am.db.commit()
    return am.db.close()
Esempio n. 2
0
def deleteLastImportResults():
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "DELETE FROM tarifica_importresults"
    am.cursor.execute(sql, ())
    am.db.commit()
    return am.db.close()
Esempio n. 3
0
def deleteAllProviderDestinationDetail():
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "DELETE FROM tarifica_providerdestinationdetail"
    am.cursor.execute(sql, ())
    am.db.commit()
    return am.db.close()
Esempio n. 4
0
def resetBundleUsage():
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "UPDATE tarifica_bundle SET tarifica_bundle.usage = %s"
    am.cursor.execute(sql, (0,))
    am.db.commit()
    return am.db.close()
Esempio n. 5
0
def deleteAllUnconfiguredCalls():
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "DELETE FROM tarifica_unconfiguredcall"
    am.cursor.execute(sql, ())
    am.db.commit()
    return am.db.close()
Esempio n. 6
0
def updatePinsetInformation():
    #Get existing information:
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "SELECT * from tarifica_pinset"
    am.cursor.execute(sql)
    existing_pinsets = am.cursor.fetchall()

    #Get current providers on asterisk's db
    todays_pinsets = am.getPinsetInformation()
    print todays_pinsets
    new_pinsets = []
    for today_u in todays_pinsets:
        existing = False
        for ex_u in existing_pinsets:
            if today_u == ex_u['pinset_number']:
                existing = True
        if not existing:
            #Didn't exist before, so we create one:
            new_pinset = (today_u, )
            new_pinsets.append(new_pinset)
            print "New pinset", today_u, "found."

    #Now, we update all previously existing pinsets and save the new ones
    am.connect('nextor_tarificador')
    sql = "INSERT INTO tarifica_pinset \
    (pinset_number) VALUES(%s)"

    totalRowsSaved = am.cursor.executemany(sql, new_pinsets)
    am.db.commit()
    print "----------------------------------------"
    print totalRowsSaved, "new pinsets saved."
Esempio n. 7
0
def saveImportResults(calls_saved, calls_not_saved):
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "INSERT INTO tarifica_importresults(calls_saved, calls_not_saved) \
        VALUES(%s, %s)"
    am.cursor.execute(sql, (calls_saved, calls_not_saved))
    am.db.commit()
    return am.db.close()
Esempio n. 8
0
def saveImportFinishStatus():
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "UPDATE tarifica_userinformation \
        SET tarifica_userinformation.is_first_import_finished = %s, \
        tarifica_userinformation.test_run_in_progress = %s, \
        tarifica_userinformation.processing_in_progress = %s"
    am.cursor.execute(sql, (True, False, False))
    am.db.commit()
    return am.db.close()
Esempio n. 9
0
def updateTrunkInformation():
    #Get existing information:
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "SELECT * from tarifica_provider"
    am.cursor.execute(sql)
    existing_providers = am.cursor.fetchall()

    #Get current providers on asterisk's db
    todays_providers = am.getTrunkInformation()
    new_providers = []
    for today_p in todays_providers:
        existing = False
        for ex_p in existing_providers:
            if today_p['trunkid'] == ex_p['asterisk_id']:
                #Same provider, we just update its name:
                if today_p['name'] != ex_p['asterisk_name']:
                    print "Provider", ex_p['name'], '(saved as', ex_p[
                        'asterisk_name'], ') has changed. New name is', today_p[
                            'name']
                    ex_p['asterisk_name'] = today_p['name']
                existing = True
        if not existing:
            #Didn't exist before, so we create one:
            new_provider = (
                today_p['trunkid'],
                today_p['name'],
                today_p['name'],
                today_p['tech'],
                today_p['channelid'],
            )
            new_providers.append(new_provider)
            print "New provider found:", today_p['name']
    #Now, we update all previously existing providers and save the new ones
    am.connect('nextor_tarificador')
    for ex_p in existing_providers:
        sql = "UPDATE tarifica_provider \
            SET asterisk_name = %s \
            WHERE id = %s"

        am.cursor.execute(sql, (ex_p['asterisk_name'], ex_p['id']))
        print "Provider", ex_p['name'], "updated."

    sql = "INSERT INTO tarifica_provider \
    (asterisk_id, asterisk_name, name, provider_tech, asterisk_channel_id) \
    VALUES(%s, %s, %s, %s, %s)"

    totalRowsSaved = am.cursor.executemany(sql, new_providers)
    am.db.commit()
    print "----------------------------------------"
    print totalRowsSaved, "new providers saved."
Esempio n. 10
0
def updateUserInformation():
    #Get existing information:
    am = AsteriskMySQLManager()
    am.connect('nextor_tarificador')
    sql = "SELECT * from tarifica_extension"
    am.cursor.execute(sql)
    existing_users = am.cursor.fetchall()

    #Get current providers on asterisk's db
    todays_users = am.getUserInformation()
    new_users = []
    for today_u in todays_users:
        existing = False
        for ex_u in existing_users:
            if today_u['extension'] == ex_u['extension_number']:
                #Same user, we just update its name:
                if today_u['name'] != ex_u['name']:
                    print "User", ex_u[
                        'name'], 'has changed. New name is', today_u['name']
                    ex_u['name'] = today_u['name']
                existing = True
        if not existing:
            #Didn't exist before, so we create one:
            new_user = (
                today_u['extension'],
                today_u['name'],
            )
            new_users.append(new_user)
            print "New user", today_u['name'], "found with extension", today_u[
                'extension']

    #Now, we update all previously existing users and save the new ones
    am.connect('nextor_tarificador')
    for ex_u in existing_users:
        sql = "UPDATE tarifica_extension \
            SET name = %s \
            WHERE id = %s"

        am.cursor.execute(sql, (ex_u['name'], ex_u['id']))
        print "Extension", ex_u['name'], "updated."

    sql = "INSERT INTO tarifica_extension \
    (extension_number, name) \
    VALUES(%s, %s)"

    totalRowsSaved = am.cursor.executemany(sql, new_users)
    am.db.commit()
    print "----------------------------------------"
    print totalRowsSaved, "new extensions saved."
Esempio n. 11
0
	def __init__(self):
		self.am = AsteriskMySQLManager()