Esempio n. 1
0
        /// <summary>
        ///     Получения частей телефонного номера
        /// </summary>
        /// <param name="phone">Телефонный номер</param>
        /// <returns>AreaPhoneInfo</returns>
        public static AreaPhoneInfo GetAreaPhoneInfo(string phone)
        {
            var api       = new AreaPhoneInfo();
            var sqlParams = new Dictionary <string, object> {
                { "@Телефон", phone }
            };
            var dt = DBManager.GetData(SQLQueries.SELECT_ЧастиТелефонногоНомера, Config.DS_user, CommandType.Text,
                                       sqlParams);

            if (dt.Rows.Count != 1)
            {
                return(null);
            }

            api.Direction          = dt.Rows[0]["Направление"].ToString();
            api.CountryPhoneCode   = dt.Rows[0]["ТелКодСтраны"].ToString();
            api.PhoneCodeInCountry = dt.Rows[0]["ТелКодВСтране"].ToString();
            if (!dt.Rows[0]["ДлинаКодаВСтране"].Equals(DBNull.Value))
            {
                api.LengthPhoneCodeInCountry = int.Parse(dt.Rows[0]["ДлинаКодаВСтране"].ToString());
            }
            api.TerritoryName = dt.Rows[0]["Территория"].ToString();

            return(api);
        }
Esempio n. 2
0
        /// <summary>
        ///     Разбитие телефонного номера на части
        /// </summary>
        /// <param name="area">Информация о частях телефонного номера</param>
        /// <param name="phone">Телефонный номер</param>
        public static void AdjustPhoneNumber(ref AreaPhoneInfo area, ref string phone)
        {
            var number = Regex.Replace(area.CountryPhoneCode + area.PhoneCodeInCountry + phone, @"\D", "");

            phone = string.Empty;

            //сделаем замены в номере
            if (area.CountryPhoneCode.Trim().Length == 0 && area.PhoneCodeInCountry.Trim().Length == 0)
            {
                if (number.StartsWith("810"))
                {
                    number = "+" + number.Remove(0, 3);
                }
                else if (number.StartsWith("00"))
                {
                    number = "+" + number.Remove(0, 2);
                }
                else if (number.StartsWith("8"))
                {
                    number = "+7" + number.Remove(0, 1);
                }

                if (number.StartsWith("+"))
                {
                    number = number.Remove(0, 1);
                }
            }

            if (number.Length == 0)
            {
                return;
            }

            if (area.CountryPhoneCode.Trim().Length == 0 && area.PhoneCodeInCountry.Trim().Length > 0)
            {
                return;
            }

            var areaInfo2 = AreaPhoneInfo.GetAreaPhoneInfo(number);

            if (areaInfo2 == null)
            {
                return;
            }

            area = areaInfo2;

            var countryPhoneCode = area.CountryPhoneCode;
            var codeLength       = area.LengthPhoneCodeInCountry ?? 0;

            var phoneWithoutCountry = number;

            if (phoneWithoutCountry.StartsWith(countryPhoneCode))
            {
                phoneWithoutCountry     = number.Remove(0, countryPhoneCode.Length);
                area.PhoneCodeInCountry =
                    phoneWithoutCountry.Substring(0, Math.Min(codeLength, phoneWithoutCountry.Length));
            }

            var phoneCode = string.Concat(countryPhoneCode, area.PhoneCodeInCountry);
            var phoneNum  = number;

            if (number.StartsWith(phoneCode))
            {
                phoneNum = number.Remove(0, phoneCode.Length);
            }
            if (phoneNum.Length > 0)
            {
                var phone2 = "";
                //возмьем из исходного номера столько цифр с конца пока не получится номер Phone2
                for (var i = 0; i < number.Length; i++)
                {
                    phone = number[number.Length - 1 - i] + phone;

                    if (char.IsDigit(number[number.Length - 1 - i]))
                    {
                        phone2 = number[number.Length - 1 - i] + phone2;
                    }

                    if (phoneNum == phone2)
                    {
                        break;
                    }
                }
            }

            var length = Math.Min(codeLength, area.PhoneCodeInCountry.Length);

            phone = area.PhoneCodeInCountry.Substring(length, area.PhoneCodeInCountry.Length - length) + phone;
            area.PhoneCodeInCountry = area.PhoneCodeInCountry.Substring(0, length);
        }