Пример #1
0
        //  vars.xml內的資料樣本
        //	<X-PRE-PROCESS cmd="set" data="force_local_ip_v4=172.16.65.145"/>
        //  <X-PRE-PROCESS cmd="set" data="local_ip_v4=$${force_local_ip_v4}"/>
        //FreeSwitch不能直接改 local_ip_v4 變數,它每分鐘會refresh一次
        //要用這種方法去強迫它變更,這API必須用在FreeSwitch Server有多IP或多網卡的狀況。
        //如果不強迫指定,它只會抓OS回報的第一個IP(順序不定)
        /// <summary>
        /// 在vars.xml裡設定 force_local_ip_v4 變數,以強迫指定 FreeSwitch的local ip
        /// </summary>
        /// <param name="config_path">
        /// FreeSwitch Config Path,包括 conf 目錄。例如 "/usr/local/freeswitch/conf"
        ///  或 "C:\Program Files\FreeSwitch\conf"
        ///	</param>
        /// <param name="ip">要指定的IP</param>
        public static void SetFreeSwitchIP(string ip)
        {
            string file = Path.Combine(new string[] { ConfigPath, GlobalVarsFile });

            if (System.IO.File.Exists(file) == false)
            {
                throw new FileNotFoundException($"config file not exist! => {file}");
            }

            //用XPath找 include下的X-PRE-PROCESS 節點,並且該節點attribute為 cmd='set' 與 data='local_ip_v4=$${force_local_ip_v4}'
            //資料樣本  <X-PRE-PROCESS cmd="set" data="local_ip_v4=$${force_local_ip_v4}"/>
            XmlDocument  doc       = XMLUtils.LoadXML(file);
            string       xpath     = "";
            XmlNode      node      = null;
            XmlNode      child     = null;
            XmlAttribute attribute = null;

            //20190804 Roy: 這邊有個詭異的Bug,原本以為變數設定不需考慮順序,但其實必須照順序來設
            //如果在XML檔先寫  local_ip_v4=$${force_local_ip_v4} 這行,後面才寫 force_local_ip_v4=192.168.20.18
            //這樣會造成sofia(sip module)錯亂,不是無法啟動就是直接跑去執行 external profile.....
            xpath = "/include/X-PRE-PROCESS[@cmd='set'][contains(@data, 'force_local_ip_v4=')]";
            node  = doc.SelectSingleNode(xpath);
            if (node == null)
            {
                Log.Debug("node force_local_ip_v4 not found, add it");

                child           = doc.CreateNode(XmlNodeType.Element, "X-PRE-PROCESS", null);
                attribute       = doc.CreateAttribute("cmd");
                attribute.Value = "set";
                child.Attributes.Append(attribute);

                attribute       = doc.CreateAttribute("data");
                attribute.Value = string.Format("force_local_ip_v4={0}", ip);
                child.Attributes.Append(attribute);

                xpath = "/include";
                node  = doc.SelectSingleNode(xpath);
                node.AppendChild(child);
            }
            else
            {
                Log.Debug($"node force_local_ip_v4 modify to {ip}");
                node.Attributes["data"].Value = string.Format("force_local_ip_v4={0}", ip);
            }

            xpath = "/include/X-PRE-PROCESS[@cmd='set'][@data='local_ip_v4=$${force_local_ip_v4}']";
            node  = doc.SelectSingleNode(xpath);
            if (null == node)
            {
                //create node
                child           = doc.CreateNode(XmlNodeType.Element, "X-PRE-PROCESS", null);
                attribute       = doc.CreateAttribute("cmd");
                attribute.Value = "set";
                child.Attributes.Append(attribute);

                attribute       = doc.CreateAttribute("data");
                attribute.Value = "local_ip_v4=$${force_local_ip_v4}";
                child.Attributes.Append(attribute);

                xpath = "/include";
                node  = doc.SelectSingleNode(xpath);
                node.AppendChild(child);
            }
            else
            {
                Log.Error("local_ip_v4=$${force_local_ip_v4} exists, skip add node");
            }

            XMLUtils.SaveXML(doc, file);
        }
Пример #2
0
        //增加一個SIP User (注意User ID不能重複)
        public static void AddSipUser(string id, string pwd)
        {
            string file = Path.Combine(new string[] { ConfigPath, "directory", UserFolder, $"{id}.xml" });

            if (File.Exists(file) == true)
            {
                File.Delete(file);
            }

            Dictionary <string, string> attr_map = new Dictionary <string, string>();
            XmlDocument doc    = new XmlDocument();
            XmlNode     child  = null;
            XmlNode     parent = doc.CreateNode(XmlNodeType.Element, "include", null);

            doc.AppendChild(parent);

            attr_map["id"] = id;
            child          = XMLUtils.CreateElementNode(doc, "user", attr_map);
            parent.AppendChild(child);

            //切換到<user>
            parent = child;
            child  = doc.CreateNode(XmlNodeType.Element, "params", null);
            parent.AppendChild(child);

            //切換到<params>
            parent = child;
            attr_map.Clear();
            attr_map["name"]  = "password";
            attr_map["value"] = pwd;
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);
            attr_map.Clear();
            attr_map["name"]  = "vm-password";
            attr_map["value"] = pwd;
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);

            //回到<user>
            parent = parent.ParentNode;
            child  = doc.CreateNode(XmlNodeType.Element, "variables", null);
            parent.AppendChild(child);

            //切換到 <variables>
            parent = child;
            attr_map.Clear();
            attr_map["name"]  = "toll_allow";
            attr_map["value"] = "sip-call";
            child             = XMLUtils.CreateElementNode(doc, "variable", attr_map);
            parent.AppendChild(child);

            attr_map.Clear();
            attr_map["name"]  = "user_context";
            attr_map["value"] = Dialplan_Ctx;
            child             = XMLUtils.CreateElementNode(doc, "variable", attr_map);
            parent.AppendChild(child);

            attr_map.Clear();
            attr_map["name"]  = "effective_caller_id_name";
            attr_map["value"] = string.Format("Extension {0}", id);
            child             = XMLUtils.CreateElementNode(doc, "variable", attr_map);
            parent.AppendChild(child);

            attr_map.Clear();
            attr_map["name"]  = "effective_caller_id_number";
            attr_map["value"] = id;
            child             = XMLUtils.CreateElementNode(doc, "variable", attr_map);
            parent.AppendChild(child);
            attr_map.Clear();
            attr_map["name"]  = "callgroup";
            attr_map["value"] = CallGroup;
            child             = XMLUtils.CreateElementNode(doc, "variable", attr_map);
            parent.AppendChild(child);

            XMLUtils.SaveXML(doc, file);
        }
Пример #3
0
        //清空Sip User設定
        public static void ResetSipUser(bool clear_all = true)
        {
            string path = Path.Combine(new string[] { ConfigPath, "directory" });
            string file = Path.Combine(new string[] { path, UserCfgFile });

            if (clear_all)
            {
                Utils.DeleteAll(path);
            }
            else
            {
                File.Delete(file);
            }

            //以下建立基礎profile of sip user....(指定要include哪個目錄的account)
            Dictionary <string, string> attr_map = new Dictionary <string, string>();
            XmlDocument doc    = new XmlDocument();
            XmlNode     parent = doc.CreateNode(XmlNodeType.Element, "include", null);

            doc.AppendChild(parent);

            attr_map.Clear();
            attr_map["name"] = "$${domain}";
            XmlNode child = XMLUtils.CreateElementNode(doc, "domain", attr_map);

            parent.AppendChild(child);

            //現在parent變成 <domain>
            parent = child;
            child  = doc.CreateNode(XmlNodeType.Element, "params", null);
            parent.AppendChild(child);

            //現在parent變成 <params>
            parent = child;
            attr_map.Clear();
            attr_map["name"]  = "dial-string";
            attr_map["value"] = "{^^:sip_invite_domain=${dialed_domain}:presence_id=${dialed_user}@${dialed_domain}}${sofia_contact(*/${dialed_user}@${dialed_domain})},${verto_contact(${dialed_user}@${dialed_domain})}";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);

            attr_map.Clear();
            attr_map["name"]  = "jsonrpc-allowed-methods";
            attr_map["value"] = "verto";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);

            //回上一層 <domain>
            parent = parent.ParentNode;
            child  = doc.CreateNode(XmlNodeType.Element, "variables", null);
            parent.AppendChild(child);

            //現在parent變成 <variables>
            parent = child;
            attr_map.Clear();
            attr_map["name"]  = "record_stereo";
            attr_map["value"] = "false";
            child             = XMLUtils.CreateElementNode(doc, "variable", attr_map);
            parent.AppendChild(child);

            attr_map.Clear();
            attr_map["name"]  = "transfer_fallback_extension";
            attr_map["value"] = "operator";
            child             = XMLUtils.CreateElementNode(doc, "variable", attr_map);
            parent.AppendChild(child);

            //回上一層 <domain>
            parent = parent.ParentNode;
            child  = doc.CreateNode(XmlNodeType.Element, "groups", null);
            parent.AppendChild(child);

            //現在parent變成 <groups>
            parent           = child;
            attr_map["name"] = "sip";
            child            = XMLUtils.CreateElementNode(doc, "group", attr_map);
            parent.AppendChild(child);

            //現在parent變成 <group>
            parent = child;
            child  = doc.CreateNode(XmlNodeType.Element, "users", null);
            parent.AppendChild(child);

            //現在parent變成 <users>
            parent           = child;
            attr_map["cmd"]  = "include";
            attr_map["data"] = string.Format("{0}/*.xml", UserFolder);
            child            = XMLUtils.CreateElementNode(doc, "X-PRE-PROCESS", attr_map);
            parent.AppendChild(child);

            //收工
            XMLUtils.SaveXML(doc, file);
            Directory.CreateDirectory(path + "\\" + UserFolder);
        }
Пример #4
0
        //FreeSwitch的SIP Profile預設分為internal與external,因為欄位太多太複雜所以不做清除,只做修改。
        //裡面的 <param name='context' value='xxxx'> 欄位 xxxx要指定 dialplan名稱,
        //      例如<param name="context" value="sip_call"/>
        //  <param name="apply-inbound-acl" value="xxxxx"/> 欄位 xxxxx要指定ACL list 名稱,
        //      例如 <param name="apply-inbound-acl" value="domains"/>
        public static void SetSipProfileInternal(string dialplan, string acl_list)
        {
            string file = Path.Combine(new string[] { ConfigPath, "sip_profiles", SipProfileInternalFile });

            if (System.IO.File.Exists(file) == false)
            {
                throw new FileNotFoundException($"config file not exist! => {file}");
            }

            XmlDocument  doc       = XMLUtils.LoadXML(file);
            string       xpath     = "/profile/settings/param[@name='context']";
            XmlNode      node      = doc.SelectSingleNode(xpath);
            XmlAttribute attribute = null;
            XmlNode      parent    = null;

            if (node != null)
            {
                node.Attributes["value"].Value = dialplan;
            }
            else
            {
                xpath  = "/profile/settings";
                parent = doc.SelectSingleNode(xpath);
                XmlNode child = doc.CreateNode(XmlNodeType.Element, "param", null);
                attribute       = doc.CreateAttribute("name");
                attribute.Value = "context";
                child.Attributes.Append(attribute);
                attribute       = doc.CreateAttribute("value");
                attribute.Value = dialplan;
                child.Attributes.Append(attribute);

                parent.AppendChild(child);
            }

            //綁定ACL,不然預設是會reject incoming connection
            //注意ACL那邊也要設定好同名的ACL list,並加入allow ip range(CIDR)
            xpath = "/profile/settings/param[@name='apply-inbound-acl']";
            node  = doc.SelectSingleNode(xpath);

            if (node == null)
            {
                //這個inbound acl好像預設是關掉的...所以要檢查是否存在。
                node            = doc.CreateNode(XmlNodeType.Element, "param", null);
                attribute       = doc.CreateAttribute("name");
                attribute.Value = "apply-inbound-acl";
                node.Attributes.Append(attribute);

                attribute       = doc.CreateAttribute("value");
                attribute.Value = acl_list;
                node.Attributes.Append(attribute);

                xpath  = "/profile/settings";
                parent = doc.SelectSingleNode(xpath);
                parent.AppendChild(node);
            }
            else
            {
                node.Attributes["value"].Value = acl_list;
            }

            XMLUtils.SaveXML(doc, file);
        }
Пример #5
0
        //注意:regex字串最外層一定要有個() 把整個ID包起來
        //      不然會撥不通...因為裡面dest_id=$1 會抓不到
        public static void SetConferenceDialplan(string regex)
        {
            string path = Path.Combine(new string[] { ConfigPath, "dialplan", Dialplan_Ctx });
            string file = Path.Combine(new string[] { path, $"{ Dialplan_Conf }.xml" });

            if (Directory.Exists(path) == false)
            {
                Directory.CreateDirectory(path);
            }

            Log.Debug($"SetConferenceDialplan = {regex}");

            //先處理regex:
            //1.頭尾要加上^跟$
            //2.要加大括號,不然設定裡那個 ${dest_id} 變數會拉不到資料
            //範例: "conf-\d{4}" => 處理後變成 "^(conf-\d{4})$"
            if (regex[0] == '^')
            {
                regex = regex.Substring(1);
            }
            if (regex[regex.Length - 1] == '$')
            {
                regex = regex.Substring(0, regex.Length - 2);
            }

            regex = string.Format("^({0})$", regex);

            if (File.Exists(file))
            {
                File.Delete(file);
            }

            Dictionary <string, string> attr_map = new Dictionary <string, string>();
            XmlDocument doc    = new XmlDocument();
            XmlNode     child  = null;
            XmlNode     parent = doc.CreateNode(XmlNodeType.Element, "include", null);

            doc.AppendChild(parent);

            attr_map["name"] = Dialplan_SIP;
            child            = XMLUtils.CreateElementNode(doc, "extension", attr_map);
            parent.AppendChild(child);

            //切換到 <extension>
            parent = child;
            attr_map.Clear();
            attr_map["field"]      = "destination_number";
            attr_map["expression"] = regex;
            child = XMLUtils.CreateElementNode(doc, "condition", attr_map);
            parent.AppendChild(child);

            //切換到 <condition>
            parent = child;
            attr_map.Clear();
            attr_map["application"] = "set";
            attr_map["data"]        = "dest_id=$1";
            child = XMLUtils.CreateElementNode(doc, "action", attr_map);
            parent.AppendChild(child);

            attr_map.Clear();
            attr_map["application"] = "answer";
            child = XMLUtils.CreateElementNode(doc, "action", attr_map);
            parent.AppendChild(child);

            //<action application="conference" data="${dest_id}@sip-conf"/>
            attr_map.Clear();
            attr_map["application"] = "conference";
            attr_map["data"]        = "${dest_id}@" + Conference_Ctx;
            child = XMLUtils.CreateElementNode(doc, "action", attr_map);
            parent.AppendChild(child);

            XMLUtils.SaveXML(doc, file);
        }
Пример #6
0
        //清掉指定的Conference設定,重新填回預設值
        public static void ResetConferenceConfig()
        {
            string file = Path.Combine(new string[] { ConfigPath, "autoload_configs", ConferenceFile });

            if (System.IO.File.Exists(file) == false)
            {
                throw new FileNotFoundException($"config file not exist! => {file}");
            }

            XmlDocument doc    = XMLUtils.LoadXML(file);
            string      xpath  = string.Format("/configuration/profiles/profile[@name='{0}']", Conference_Ctx);
            XmlNode     node   = doc.SelectSingleNode(xpath);
            XmlNode     parent = null;
            XmlNode     child  = null;
            Dictionary <string, string> attr_map = new Dictionary <string, string>();

            if (node != null)
            {
                parent = node.ParentNode;
                parent.RemoveChild(node);
            }

            attr_map["name"] = Conference_Ctx;
            child            = XMLUtils.CreateElementNode(doc, "profile", attr_map);
            parent.AppendChild(child);

            //切換到 <profile>
            parent = child;
            attr_map.Clear();
            attr_map["name"]  = "domain";
            attr_map["value"] = "$${domain}";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);
            attr_map.Clear();
            attr_map["name"]  = "rate";
            attr_map["value"] = "8000";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);

            attr_map.Clear();
            attr_map["name"]  = "interval";
            attr_map["value"] = "20";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);
            attr_map.Clear();
            attr_map["name"]  = "energy-level";
            attr_map["value"] = "100";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);
            attr_map.Clear();
            attr_map["name"]  = "caller-id-name";
            attr_map["value"] = "$${outbound_caller_name}";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);
            attr_map.Clear();
            attr_map["name"]  = "caller-id-number";
            attr_map["value"] = "$${outbound_caller_id}";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);
            attr_map.Clear();
            attr_map["name"]  = "comfort-noise";
            attr_map["value"] = "true";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);
            attr_map["name"]  = "auto-gain-level";
            attr_map["value"] = "true";
            child             = XMLUtils.CreateElementNode(doc, "param", attr_map);
            parent.AppendChild(child);

            XMLUtils.SaveXML(doc, file);
        }