在sip.conf中简化设备创建

时间:2014-04-22 16:12:37

标签: asterisk

我经常要在sip.conf中定义许多类似的设备,如下所示:

[device](!)
; setting some parameters

[device01](device)
callerid=dev01 <01>
[device02](device)
callerid=dev02 <02>
; ...
[deviceXX](device)
callerid=devXX <XX>

问题是我可以通过使用一些变量来避免设置特定于设备名称的参数吗?

[device](!)
callerid=dev${DEVICE_NAME:-2} <${DEVICE_NAME:-2}>
; setting some parameters

[device01](device)
[device02](device)
; ...
[deviceXX](device)

P.S。 如果有一些设备构造函数,那将是完美的,所以我可以将脚本减少到跟随,但是,我认为,这在Asterisk中是不可能的。

[device](!)
callerid=dev${DEVICE_NAME:-2} <${DEVICE_NAME:-2}>
; setting some parameters

;[device${MAGIC_LOOP(1,XX,leading_zeroes)}](device)

1 个答案:

答案 0 :(得分:0)

我编写了一个小程序来处理它,取得了不错的成绩。它会检查类似

的行
------- Automatically generated -------

以及在该行之后的任何内容,只要它检测到有新值(它可以来自数据库或文本文件),它就会被重新生成。然后,我与主管一起运行它,如果有变化,它会每XX秒检查一次。

如果有更改,则在更新sip.conf文件后发出sip reload命令

我是用python编写的,但无论你觉得哪种语言应该都能正常工作。

这就是我如何管理并且到目前为止一直运作良好(几个月后)。我对学习其他方法非常感兴趣。它基本上就是这个(从另一个带有主管的脚本调用):

users = get_users_logic()

#get the data that will me used on the sip.conf file
data_to_be_hashed = reduce(lambda x, y: x + y, map(lambda x: x['username'] + x['password'] + x['company_prefix'], users))

m = hashlib.md5()
m.update(str(data_to_be_hashed).encode("ascii"))
new_md5 = m.hexdigest()

last_md5 = None
try:
    file = open(os.path.dirname(os.path.realpath(__file__)) + '/lastMd5.txt', 'r')
    last_md5 = file.read().rstrip()
    file.close()
except:
    pass

# if it changed...
if new_md5 != last_md5:
    #needs update
    with open(settings['asterisk']['path_to_sip_conf'], 'r') as file:
        sip_content = file.read().rstrip()

    parts = sip_content.split(";-------------- BEYOND THIS POINT IT IS AUTO GENERATED --------------;")
    sip_content = parts[0].rstrip()
    sip_content += "\n\n;-------------- BEYOND THIS POINT IT IS AUTO GENERATED --------------;\n\n"

    for user in users:
        m = hashlib.md5()
        m.update(("%s:sip.ellauri.it:%s" % (user['username'], user['password'])).encode("ascii"))
        md5secret = m.hexdigest()

        sip_content += "[%s]\ntype = friend\ncontext = %sLocal\nmd5secret = %s\nhost = dynamic\n\n" % (
        user['username'], user['company_prefix'], md5secret)

    #write the sip.conf file
    f = open(settings['asterisk']['path_to_sip_conf'], 'w')
    print(sip_content, file=f)
    f.close()

    subprocess.call('asterisk -x "sip reload"', shell=True)

    #write the new md5
    f = open(os.path.dirname(os.path.realpath(__file__)) + '/lastMd5.txt', 'w')
    print(new_md5, file=f)
    f.close()