Example #1
0
        /// <summary>
        /// 登录DZ
        /// </summary>
        /// <param name="Url">logging.php地址.请附带?action=login添加</param>
        /// <param name="LoginName">登录名(用户名、邮箱或者uid)</param>
        /// <param name="LoginNameType">登录名类型(用户名、邮箱或者uid)</param>
        /// <param name="Password">密码</param>
        /// <param name="VCode">验证码(暂时未支持)</param>
        /// <param name="Questionid">登录提示问题id</param>
        /// <param name="Answer">答案</param>
        /// <param name="Charset">网页编码</param>
        /// <param name="Proxy">代理(不使用请传入null)</param>
        /// <returns></returns>
        public static CookieContainer Login(string Url, string LoginName, LoginNameType LoginType, string Password, string VCode, string Questionid, string Answer, string Charset, WebProxy Proxy)
        {
            string          returnData    = "";
            string          formhash      = "";
            CookieContainer objCookie     = new CookieContainer();
            Httper          objPostHttper = new Httper();

            objPostHttper.Url     = Url;
            objPostHttper.Charset = Charset;
            objPostHttper.Cookie  = objCookie;
            if (Proxy != null)
            {
                objPostHttper.Proxy = Proxy;
            }

            try
            {
                formhash = RegexUtility.GetMatch(objPostHttper.HttpGet(), "formhash=(.*)\"");

                objPostHttper.PostData = string.Format("&formhash={0}&referer=index.php&loginfield={5}&username={1}&password={2}&questionid={3}&answer={4}&cookietime=2592000&loginsubmit=%CC%E1%BD%BB"
                                                       , formhash, LoginName, Password, Questionid, Answer, LoginType.ToString().ToLower());
                returnData = objPostHttper.HttpPost();
                if (returnData.IndexOf("欢迎您回来") > 0)
                {
                    //登录成功,返回cookie
                    return(objCookie);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(null);
        }
Example #2
0
        public static int GetBoardPageCountPro(string sourceHtml)
        {
            string regexString = "(<div\\s+class=\"pages\".*?>([<.*?>]*)</div>)";
            string result      = RegexUtility.GetMatch(sourceHtml, regexString).Replace("</a>", "</a>|").Replace("<a", "|<a");
            string nums        = Web.Utils.RemoveHtml(result);

            MatchCollection mc = RegexUtility.GetMatchFull(nums, "[0-9]+");

            string pageString = string.Empty;

            if (mc.Count > 0)
            {
                pageString = mc[mc.Count - 1].Groups[0].Value;
            }

            int pageCount;

            if (int.TryParse(pageString, out pageCount))
            {
                return(pageCount);
            }
            else
            {
                return(-1);
            }
        }
Example #3
0
        public static string GetFormHash(string pageContent)
        {
            string formhash;

            formhash = RegexUtility.GetMatch(pageContent, "name=\"formhash\" value=\"(.*)\"");
            if (formhash == string.Empty)
            {
                formhash = RegexUtility.GetMatch(pageContent, "formhash=(.*)\"");
            }
            return(formhash);
        }
Example #4
0
        public static int GetBoardPageCount(string sourceHtml)
        {
            return(GetBoardPageCountPro(sourceHtml));

            #region  用的匹配方式
            string regexstring = RegexStringLib.GetBoardPageCount();
            string result      = RegexUtility.GetMatch(sourceHtml, regexstring);

            int pageCount;
            if (int.TryParse(result, out pageCount))
            {
                return(pageCount);
            }
            else
            {
                return(-1);
            }
            #endregion
        }
Example #5
0
 public static string GetCurrentIP_RegexPage(string pagesource, string regexString)
 {
     return(RegexUtility.GetMatch(pagesource, regexString));
 }