public ActionResult Edit_Area()
        {
            if (Session["CurrentAccountID"] == null)
            {
                return(RedirectToAction("Select", "OfficialAccount", new { Area = "Admin" }));
            }
            Guid            id  = Guid.Parse(Session["CurrentAccountID"].ToString());
            OfficialAccount off = new OfficialAccount_BLL().Get(a => a.AccountID == id);

            AutoMapper.Mapper.CreateMap <OfficialAccount, OfficialAccount_AreaLimit_ViewModel>();
            OfficialAccount_AreaLimit_ViewModel model = AutoMapper.Mapper.Map <OfficialAccount_AreaLimit_ViewModel>(off);



            List <object> levelList = new List <object>
            {
                new { Value = "国家", Text = "国家" },
                new { Value = "省份", Text = "省份" },
                new { Value = "城市", Text = "城市" }
            };

            ViewBag.LevelList = new SelectList(levelList, "Value", "Text", false);



            return(View(model));
        }
        public ActionResult MyList()
        {
            Users user = new Users_BLL().GetCurrentUser();

            if (user.Users_Role.RoleName != "普通用户")
            {
                OfficialAccount_BLL    bll        = new OfficialAccount_BLL();
                List <OfficialAccount> sourselist = bll.GetList().ToList();
                AutoMapper.Mapper.CreateMap <OfficialAccount, OfficialAccount_ViewModel>()
                .ForMember(dest => dest.UserName, opt => opt.MapFrom(src => src.Users.UserName));
                List <OfficialAccount_ViewModel> list =
                    AutoMapper.Mapper.Map <List <OfficialAccount_ViewModel> >(sourselist);

                ViewBag.IsAdmin = true;
                return(View(list));
            }
            else
            {
                OfficialAccount_BLL    bll        = new OfficialAccount_BLL();
                List <OfficialAccount> sourselist = bll.GetList(a => a.UserID == user.UserID).ToList();
                AutoMapper.Mapper.CreateMap <OfficialAccount, OfficialAccount_ViewModel>()
                .ForMember(dest => dest.UserName, opt => opt.MapFrom(src => src.Users.UserName));
                List <OfficialAccount_ViewModel> list =
                    AutoMapper.Mapper.Map <List <OfficialAccount_ViewModel> >(sourselist);
                ViewBag.IsAdmin = false;

                return(View(list));
            }
        }
        public ActionResult Save_PromptLanguage(Guid id, string type, string content)
        {
            OfficialAccount_BLL bll = new OfficialAccount_BLL();
            OfficialAccount     of  = bll.Get(a => a.AccountID == id);

            try
            {
                //Regex.Replace(content, "<p>[\s]*</p>", "");
                content = Regex.Replace(content, "<p[^>]*>", "").Replace("</p>", "").Replace("<br>", "\n").Replace("<br/>", "\n");
                //content.Replace(@"<p>", "");
                //content.Replace(@"</p>", "");

                if (type == "welcome")
                {
                    of.SubscribeWelcome = content;
                    bll.Update(of);
                }
                else if (type == "rewelcome")
                {
                    of.ReSubscribeWelcome = content;
                    bll.Update(of);
                }
                else if (type == "sign")
                {
                    of.SignLanguage = content;
                    bll.Update(of);
                }

                return(Content("修改成功!"));
            }
            catch (Exception)
            {
                return(Content("修改失败!"));
            }
        }
        public ActionResult Edit_YouZan(OfficialAccount_YouZan_ViewModel model)
        {
            OfficialAccount_BLL bll      = new OfficialAccount_BLL();
            OfficialAccount     newmodel = bll.Get(a => a.AccountID == model.AccountID);

            newmodel.YouZanIsConfig        = true;
            newmodel.YouZanAppID           = model.YouZanAppID;
            newmodel.YouZanAppSecret       = model.YouZanAppSecret;
            newmodel.YZIncomeFirstPercent  = model.YZIncomeFirstPercent;
            newmodel.YZIncomeSecondPercent = model.YZIncomeSecondPercent;
            newmodel.YZIncomeCashLimit     = model.YZIncomeCashLimit;
            newmodel.YouZanEnable          = model.YouZanEnable;



            if (bll.Update(newmodel) > 0)
            {
                return(RedirectToAction("Edit_YouZan"));
            }
            else
            {
                ModelState.AddModelError("", "修改失败,请稍后再试!");

                return(View(model));
            }
        }
        public ActionResult Edit_Area(OfficialAccount_AreaLimit_ViewModel model)
        {
            OfficialAccount_BLL bll      = new OfficialAccount_BLL();
            OfficialAccount     newmodel = bll.Get(a => a.AccountID == model.AccountID);

            newmodel.AreaLevel = model.AreaLevel;
            newmodel.AreaLimit = model.AreaLimit;



            if (bll.Update(newmodel) > 0)
            {
                return(RedirectToAction("Edit_Area"));
            }
            else
            {
                List <object> levelList = new List <object>
                {
                    new { Value = "国家", Text = "国家" },
                    new { Value = "省份", Text = "省份" },
                    new { Value = "城市", Text = "城市" }
                };
                ViewBag.LevelList = new SelectList(levelList, "Value", "Text", false);


                ModelState.AddModelError("", "修改失败,请稍后再试!");

                return(View(model));
            }
        }
        /// <summary>
        /// 取消关注时间
        /// </summary>
        /// <param name="requestMessage"></param>

        public void UnSubscribe(RequestMessageEvent_Unsubscribe requestMessage)
        {
            OfficialAccount_BLL obll  = new OfficialAccount_BLL();
            OfficialAccount     model = obll.Get(a => a.OriginalID == requestMessage.ToUserName);

            Subscriber_BLL sbll = new Subscriber_BLL();

            if (sbll.GetCount(a => a.OpenID == requestMessage.FromUserName && a.AccountID == model.AccountID) > 0)
            {
                Subscriber sub = sbll.Get(a => a.OpenID == requestMessage.FromUserName && a.AccountID == model.AccountID);
                sub.IsOK            = false;
                sub.UnSubscribeTime = DateTime.Now;
                if (sub.UnSubscribeCount != null)
                {
                    sub.UnSubscribeCount += 1;
                }
                else
                {
                    sub.UnSubscribeCount = 1;
                }
                sub.Score = 0;
                sbll.Update(sub);



                if (sub.FromOpenID != null)
                {
                    //if (sub.UnSubscribeCount > 1)
                    //{


                    Subscriber sup = sbll.Get(a => a.OpenID == sub.FromOpenID && a.AccountID == model.AccountID);

                    if (sup.IsOK == true)
                    {
                        sup.Score -= model.UnSubscribeReduceScore;


                        sup.DirectScore -= model.UnSubscribeReduceScore;


                        sbll.Update(sup);

                        StringBuilder sbparent = new StringBuilder();
                        sbparent.Append("您好,你的粉丝【" + sub.NickName + "】取消关注了本公众号!\n");


                        sbparent.Append("减少积分:" + model.UnSubscribeReduceScore + "分,累计积分:" + sup.Score.ToString() +
                                        "分\n");
                        CustomApi.SendText(model.AppID, sup.OpenID, sbparent.ToString());
                    }



                    //}
                }
            }
        }
        public ActionResult _Configure(Guid AccountID)
        {
            OfficialAccount_BLL bll = new OfficialAccount_BLL();
            OfficialAccount     off = bll.Get(a => a.AccountID == AccountID);

            off.IsConfigure = true;
            bll.Update(off);
            return(PartialView(off));
        }
        public ActionResult Edit(Guid id)
        {
            OfficialAccount off = new OfficialAccount_BLL().Get(a => a.AccountID == id);


            AutoMapper.Mapper.CreateMap <OfficialAccount, OfficialAccount_ViewModel>();
            OfficialAccount_ViewModel model = AutoMapper.Mapper.Map <OfficialAccount_ViewModel>(off);

            return(View(model));
        }
Ejemplo n.º 9
0
        public ActionResult List(string code, string state)
        {
            if (string.IsNullOrEmpty(code))
            {
                return(Content("您拒绝了授权!"));
            }

            Guid accountid = Guid.Parse(state.Trim());

            OfficialAccount off = new OfficialAccount_BLL().Get(a => a.AccountID == accountid);

            OAuthAccessTokenResult result = new OAuthAccessTokenResult();

            //通过,用code换取access_token
            try
            {
                result = OAuthApi.GetAccessToken(off.AppID.Trim(), off.AppSecret.Trim(), code);
            }
            catch (Exception ex)
            {
                if (Session["OAuthAccessToken"] != null)
                {
                    result = Session["OAuthAccessToken"] as OAuthAccessTokenResult;
                    try
                    {
                        result = OAuthApi.RefreshToken(off.AppID.Trim(), result.refresh_token);
                    }
                    catch (Exception)
                    {
                        return(Content("错误:" + result.errmsg));
                    }
                }
                else
                {
                    return(Content("错误:" + result.errmsg));
                }
            }
            if (result.errcode != ReturnCode.请求成功)
            {
                return(Content("错误:" + result.errmsg));
            }


            Session["OAuthAccessTokenStartTime"] = DateTime.Now;
            Session["OAuthAccessToken"]          = result;
            OAuthUserInfo info = OAuthApi.GetUserInfo(result.access_token, result.openid);

            Subscriber_BLL subbll = new Subscriber_BLL();

            Subscriber mysub = subbll.Get(a => a.OpenID == info.openid);

            List <Goods_Order> list = new Goods_Order_BLL().GetList(a => a.SubscribeID == mysub.SubscribeID).OrderByDescending(a => a.CreateTime).ToList();

            return(View("MyList", list));
        }
Ejemplo n.º 10
0
        //
        // GET: /WeiXin/Score/

        public ActionResult MyScore(string code, string state)
        {
            //string aaa = "code:" + code + " ; state:" + state;
            //return Content(aaa);


            OfficialAccount_BLL obll = new OfficialAccount_BLL();
            Guid            id       = Guid.Parse(state);
            OfficialAccount off      = obll.Get(a => a.AccountID == id);

            //return Content(off.AppID.Trim()+";"+ off.AppSecret.Trim());

            OAuthAccessTokenResult result = OAuthApi.GetAccessToken(off.AppID.Trim(), off.AppSecret.Trim(), code);

            OAuthUserInfo info = OAuthApi.GetUserInfo(result.access_token, result.openid);
            //ViewBag.aaa = info.nickname;
            //ViewBag.bbb = info.openid;

            //return Content(info.nickname + info.openid);
            //return Content(result.openid);


            //string openid = "oqbOQs7w9UNUdksAEnd5zwIxUNCE";

            Subscriber_BLL subbll = new Subscriber_BLL();

            Subscriber mysub = subbll.Get(a => a.OpenID == info.openid);

            if (mysub != null)
            {
                //获取我的粉丝
                List <Subscriber> fans =
                    subbll.GetList(a => a.FromOpenID == info.openid).OrderBy(a => a.SubscribeTime).ToList();
                ViewBag.FansList = fans;
                //获取的我的分数

                if (mysub.Score != null)
                {
                    ViewBag.MyScore = mysub.Score;
                }
                else
                {
                    ViewBag.MyScore = 0;
                }
            }
            else
            {
                ViewBag.FansList = new List <Subscriber>();
                ViewBag.MyScore  = 0;
            }



            return(View());
        }
        public ActionResult Edit_PromptLanguage()
        {
            if (Session["CurrentAccountID"] == null)
            {
                return(RedirectToAction("Select", "OfficialAccount", new { Area = "Admin" }));
            }
            Guid            id  = Guid.Parse(Session["CurrentAccountID"].ToString());
            OfficialAccount off = new OfficialAccount_BLL().Get(a => a.AccountID == id);

            return(View(off));
        }
        public ActionResult Edit_Score()
        {
            if (Session["CurrentAccountID"] == null)
            {
                return(RedirectToAction("Select", "OfficialAccount", new { Area = "Admin" }));
            }
            Guid            id  = Guid.Parse(Session["CurrentAccountID"].ToString());
            OfficialAccount off = new OfficialAccount_BLL().Get(a => a.AccountID == id);


            AutoMapper.Mapper.CreateMap <OfficialAccount, OfficialAccount_Score_ViewModel>();
            OfficialAccount_Score_ViewModel model = AutoMapper.Mapper.Map <OfficialAccount_Score_ViewModel>(off);

            return(View(model));
        }
Ejemplo n.º 13
0
        public ActionResult SaveMenu(FormCollection fc)
        {
            Guid   id                       = Guid.Parse(fc["accountid"].ToString());
            string menustr                  = fc["menustr"].ToString();
            JavaScriptSerializer js         = new JavaScriptSerializer();
            var                 jsonResult  = js.Deserialize <GetMenuResultFull>(menustr);
            ButtonGroup         bg          = new ButtonGroup();
            GetMenuResult       aasaas      = CommonApi.GetMenuFromJsonResult(jsonResult, bg);
            OfficialAccount_BLL bll         = new OfficialAccount_BLL();
            OfficialAccount     oa          = bll.Get(a => a.AccountID == id);
            string              accessToken = AccessTokenContainer.TryGetAccessToken(oa.AppID, oa.AppSecret);

            Senparc.Weixin.Entities.WxJsonResult rrr = CommonApi.CreateMenu(accessToken, aasaas.menu);
            return(Json(rrr.errcode.ToString(), JsonRequestBehavior.AllowGet));
        }
        public ActionResult _GetCurrentAccountName()
        {
            if (Session["CurrentAccountID"] != null)
            {
                Guid id = Guid.Parse(Session["CurrentAccountID"].ToString());


                OfficialAccount oa = new OfficialAccount_BLL().Get(a => a.AccountID == id);
                return(Content(oa.WeiXinName));
            }
            else
            {
                return(Content("当前没有选择!"));
            }
        }
        public ActionResult Edit(OfficialAccount_ViewModel model)
        {
            AutoMapper.Mapper.CreateMap <OfficialAccount_ViewModel, OfficialAccount>();
            OfficialAccount newmodel = AutoMapper.Mapper.Map <OfficialAccount>(model);

            OfficialAccount_BLL bll = new OfficialAccount_BLL();

            if (bll.Update(newmodel) > 0)
            {
                return(RedirectToAction("MyList"));
            }
            else
            {
                ModelState.AddModelError("", "修改失败,请稍后再试!");

                return(View(model));
            }
        }
Ejemplo n.º 16
0
        public ActionResult GetMenuJson(Guid accountid)
        {
            OfficialAccount_BLL bll = new OfficialAccount_BLL();
            OfficialAccount     oa  = bll.Get(a => a.AccountID == accountid);

            string accessToken = AccessTokenContainer.TryGetAccessToken(oa.AppID, oa.AppSecret);

            GetMenuResult result = CommonApi.GetMenu(accessToken);

            foreach (var item in result.menu.button)
            {
                var a2a = item.GetType();
            }

            var aa = result;

            return(Json(result, JsonRequestBehavior.AllowGet));
        }
        public PartialViewResult _OrderMenu()
        {
            Users user = new Users_BLL().GetCurrentUser();
            OfficialAccount_BLL    bll  = new OfficialAccount_BLL();
            List <OfficialAccount> list = new List <OfficialAccount>();

            if (user.Users_Role.RoleName != "普通用户")
            {
                list = bll.GetList(a => a.IsConfigure == true)
                       .OrderByDescending(a => a.CreateTime)
                       .ToList();
            }
            else
            {
                list = bll.GetList(a => a.UserID == user.UserID && a.IsConfigure == true)
                       .OrderByDescending(a => a.CreateTime)
                       .ToList();
            }

            return(PartialView(list));
        }
        public ActionResult Select()
        {
            Users user = new Users_BLL().GetCurrentUser();
            OfficialAccount_BLL    bll  = new OfficialAccount_BLL();
            List <OfficialAccount> list = new List <OfficialAccount>();

            if (user.Users_Role.RoleName != "普通用户")
            {
                list = bll.GetList()
                       .OrderByDescending(a => a.CreateTime)
                       .ToList();
            }
            else
            {
                list = bll.GetList(a => a.UserID == user.UserID)
                       .OrderByDescending(a => a.CreateTime)
                       .ToList();
            }

            return(View(list));
        }
Ejemplo n.º 19
0
        // GET: Admin/Menu
        public ActionResult Index()
        {
            if (Session["CurrentAccountID"] == null)
            {
                return(RedirectToAction("Select", "OfficialAccount", new { Area = "Admin" }));
            }
            Guid accountid = Guid.Parse(Session["CurrentAccountID"].ToString());

            ViewBag.AccountID = accountid;
            OfficialAccount_BLL bll = new OfficialAccount_BLL();
            OfficialAccount     oa  = bll.Get(a => a.AccountID == accountid);

            ViewBag.AppID = oa.AppID;
            string accessToken = AccessTokenContainer.TryGetAccessToken(oa.AppID, oa.AppSecret);

            GetMenuResult result = CommonApi.GetMenu(accessToken);


            return(View(result));
            //return Json(result,JsonRequestBehavior.AllowGet);
        }
        public ActionResult Edit_BaseInfo(OfficialAccount_BaseInfo_ViewModel model)
        {
            OfficialAccount_BLL bll      = new OfficialAccount_BLL();
            OfficialAccount     newmodel = bll.Get(a => a.AccountID == model.AccountID);

            newmodel.WeiXinName   = model.WeiXinName;
            newmodel.OriginalID   = model.OriginalID;
            newmodel.WeiXinNumber = model.WeiXinNumber;
            newmodel.WeiXinName   = model.AppID;
            newmodel.WeiXinName   = model.AppSecret;


            if (bll.Update(newmodel) > 0)
            {
                return(RedirectToAction("Edit_BaseInfo"));
            }
            else
            {
                ModelState.AddModelError("", "修改失败,请稍后再试!");

                return(View(model));
            }
        }
        public ActionResult Add(OfficialAccount_BaseInfo_ViewModel model)
        {
            AutoMapper.Mapper.CreateMap <OfficialAccount_BaseInfo_ViewModel, OfficialAccount>();
            OfficialAccount newmodel = AutoMapper.Mapper.Map <OfficialAccount>(model);

            newmodel.AccountID  = Guid.NewGuid();
            newmodel.CreateTime = DateTime.Now;
            Users user = new Users_BLL().GetCurrentUser();

            newmodel.UserID      = user.UserID;
            newmodel.IsConfigure = false;

            OfficialAccount_BLL bll = new OfficialAccount_BLL();

            if (bll.Add(newmodel) > 0)
            {
                return(RedirectToAction("Select"));
            }
            else
            {
                ModelState.AddModelError("", "添加失败,请稍后再试!");
                return(View(model));
            }
        }
        public ActionResult Edit_Score(OfficialAccount_Score_ViewModel model)
        {
            OfficialAccount_BLL bll      = new OfficialAccount_BLL();
            OfficialAccount     newmodel = bll.Get(a => a.AccountID == model.AccountID);

            newmodel.SubscribeAddScore            = model.SubscribeAddScore;
            newmodel.UnSubscribeReduceScore       = model.UnSubscribeReduceScore;
            newmodel.SubscribeParentAddScore      = model.SubscribeParentAddScore;
            newmodel.UnSubscribeParentReduceScore = model.UnSubscribeParentReduceScore;
            newmodel.SignAddScore = model.SignAddScore;



            if (bll.Update(newmodel) > 0)
            {
                return(RedirectToAction("Edit_Score"));
            }
            else
            {
                ModelState.AddModelError("", "修改失败,请稍后再试!");

                return(View(model));
            }
        }
Ejemplo n.º 23
0
        public void CreateHaiBao(string fromUser, string toUser, string temppath)
        {
            OfficialAccount_BLL obll = new OfficialAccount_BLL();
            //OfficialAccount model = obll.Get(a => a.OriginalID == toUser);
            OfficialAccount model = obll.Get(a => a.OriginalID == "gh_9229f06559cd");



            if (!AccessTokenContainer.CheckRegistered(model.AppID))          //检查是否已经注册
            {
                AccessTokenContainer.Register(model.AppID, model.AppSecret); //如果没有注册则进行注册
            }
            try
            {
                Account_QRCode_Template aqt =
                    new Account_QRCode_Template_BLL().GetList(a => a.AccountID == model.AccountID)
                    .OrderByDescending(a => a.CreateTime)
                    .FirstOrDefault();

                QRCode_Template temp = new QRCode_Template_BLL().Get(a => a.TemplateID == aqt.TemplateID);



                DateTime now = DateTime.Now.AddMinutes(-2);
                WS.Utility.FileHelper.DeleteFilesBeforeTime(temppath, now);



                WebClient    wc = new WebClient();
                ICredentials cred;
                cred = new NetworkCredential("user-22", "user-22");

                WebProxy wp = new WebProxy("http://172.18.226.109:808/", true, null, cred);
                wc.Proxy = wp;
                //下载原图
                //string yuanfilename = Guid.NewGuid().ToString() + ".png";
                string yuanlocalfilename =
                    temppath + Guid.NewGuid().ToString() + ".jpg";
                //wc.DownloadFile(ConfigurationManager.AppSettings["QiNiuDomain"] + model.QRCodeBgImg, yuanlocalfilename);
                wc.DownloadFile("http://qiniu.weixin.hairuiit.com/" + aqt.QRCodeBgImg, yuanlocalfilename);


                Senparc.Weixin.MP.AdvancedAPIs.User.UserInfoJson uij =
                    Senparc.Weixin.MP.AdvancedAPIs.UserApi.Info(model.AppID, fromUser);
                //加入昵称
                string savename1 = temppath + Guid.NewGuid().ToString() + ".jpg";
                ImageHelper.Add_FontMark(yuanlocalfilename, savename1, uij.nickname, temp.NickName_FontFamily, (int)temp.NickName_FontSize, Color.Black, (int)temp.NickName_FontX, (int)temp.NickName_FontY);

                //下载头像
                string touxiang = temppath + Guid.NewGuid().ToString() + ".png";
                wc.DownloadFile(uij.headimgurl, touxiang);
                //下载二维码
                // Senparc.Weixin.MP.AdvancedAPIs.QrCode.CreateQrCodeResult createQrCodeResult =QrCodeApi.CreateByStr(model.AppID, fromUser);
                Senparc.Weixin.MP.AdvancedAPIs.QrCode.CreateQrCodeResult createQrCodeResult = QrCodeApi.Create(model.AppID, 0, 0, Senparc.Weixin.MP.QrCode_ActionName.QR_LIMIT_STR_SCENE, fromUser);
                string localcodefile =
                    temppath + Guid.NewGuid().ToString() + ".png";
                wc.DownloadFile(QrCodeApi.GetShowQrCodeUrl(createQrCodeResult.ticket), localcodefile);
                wc.Dispose();

                ///加头像

                string savename2 = temppath + Guid.NewGuid().ToString() + ".jpg";

                ImageHelper.Add_ImageMark(savename1, touxiang, savename2, (int)temp.HeadImg_X, (int)temp.HeadImg_Y, (int)temp.HeadImg_Width, (int)temp.HeadImg_Height);



                string savename3 = temppath + Guid.NewGuid().ToString() + ".jpg";

                ImageHelper.Add_ImageMark(savename2, localcodefile, savename3, (int)temp.QRCode_X, (int)temp.QRCode_Y, (int)temp.QRCode_Width, (int)temp.QRCode_Height);

                Senparc.Weixin.MP.AdvancedAPIs.Media.UploadTemporaryMediaResult media =
                    Senparc.Weixin.MP.AdvancedAPIs.MediaApi.UploadTemporaryMedia(model.AppID,
                                                                                 Senparc.Weixin.MP.UploadMediaFileType.image, savename3);

                Senparc.Weixin.MP.AdvancedAPIs.CustomApi.SendText(model.AppID, fromUser,
                                                                  "专属海报已经接收成功,请保存到手机相册,分享海报兑换奖品哦!");
                Senparc.Weixin.MP.AdvancedAPIs.CustomApi.SendImage(model.AppID, fromUser,
                                                                   media.media_id);


                Thread.Sleep(6000);
                WS.Utility.FileHelper.Delete(yuanlocalfilename);
                WS.Utility.FileHelper.Delete(savename1);
                WS.Utility.FileHelper.Delete(savename2);
                WS.Utility.FileHelper.Delete(savename3);
                WS.Utility.FileHelper.Delete(touxiang);
                WS.Utility.FileHelper.Delete(localcodefile);


                //var responseMessage = this.CreateResponseMessage<ResponseMessageText>();
                //responseMessage.Content = "生成成功";
                //return responseMessage;

                //return null;
            }
            catch (Exception ex)
            {
                //LogHelper.ErrorInfo(ex);
                //Senparc.Weixin.MP.AdvancedAPIs.CustomApi.SendText(model.AppID, requestMessage.FromUserName,
                //    ex.Message.ToString());
                Senparc.Weixin.MP.AdvancedAPIs.CustomApi.SendText(model.AppID, fromUser,
                                                                  ex.ToString());
            }
        }
        // GET: Admin/OfficialAccount
        public ActionResult Index()
        {
            if (Session["CurrentAccountID"] == null)
            {
                return(RedirectToAction("Select", "OfficialAccount", new { Area = "Admin" }));
            }
            Guid            id  = Guid.Parse(Session["CurrentAccountID"].ToString());
            OfficialAccount off = new OfficialAccount_BLL().Get(a => a.AccountID == id);


            OfficialAccount_Finish_ViewModel finish = new OfficialAccount_Finish_ViewModel();

            //基本信息
            if (!string.IsNullOrWhiteSpace(off.WeiXinName) &&
                !string.IsNullOrWhiteSpace(off.OriginalID) &&
                !string.IsNullOrWhiteSpace(off.WeiXinNumber) &&
                !string.IsNullOrWhiteSpace(off.AppID) &&
                !string.IsNullOrWhiteSpace(off.AppSecret)
                )
            {
                finish.BaseInfo = true;
            }
            else
            {
                finish.BaseInfo = false;
            }
            //海报
            if (off.Account_QRCode_Template.Count() > 0)
            {
                finish.HaoBao = true;
            }
            else
            {
                finish.HaoBao = false;
            }

            //提示语
            if (!string.IsNullOrWhiteSpace(off.SubscribeWelcome) &&
                !string.IsNullOrWhiteSpace(off.ReSubscribeWelcome) &&
                !string.IsNullOrWhiteSpace(off.SignLanguage)
                )
            {
                finish.PromptLanguage = true;
            }
            else
            {
                finish.PromptLanguage = false;
            }
            //基本信息
            if (off.SubscribeAddScore != null &&
                off.UnSubscribeReduceScore != null &&
                off.SubscribeParentAddScore != null &&
                off.UnSubscribeParentReduceScore != null &&
                off.SignAddScore != null

                )
            {
                finish.Score = true;
            }
            else
            {
                finish.Score = false;
            }
            //基本信息
            if (!string.IsNullOrWhiteSpace(off.YouZanAppID) &&
                !string.IsNullOrWhiteSpace(off.YouZanAppSecret) &&
                off.YZIncomeFirstPercent != null &&
                off.YZIncomeSecondPercent != null &&
                off.YZIncomeCashLimit != null
                )
            {
                finish.YouZan = true;
            }
            else
            {
                finish.YouZan = false;
            }


            return(View(finish));
        }
        /// <summary>
        /// 关注事件
        /// </summary>
        /// <param name="requestMessage"></param>
        public void Subscribe(RequestMessageEvent_Subscribe requestMessage)
        {
            OfficialAccount_BLL obll  = new OfficialAccount_BLL();
            OfficialAccount     model = obll.Get(a => a.OriginalID == requestMessage.ToUserName);

            if (!AccessTokenContainer.CheckRegistered(model.AppID))          //检查是否已经注册
            {
                AccessTokenContainer.Register(model.AppID, model.AppSecret); //如果没有注册则进行注册
            }
            Senparc.Weixin.MP.AdvancedAPIs.User.UserInfoJson uij = UserApi.Info(model.AppID, requestMessage.FromUserName);

            bool isInArea = false;

            if (model.AreaLimit != null)
            {
                if (model.AreaLevel == "国家" && model.AreaLimit.Contains(uij.country))
                {
                    isInArea = true;
                }
                if (model.AreaLevel == "省份" && model.AreaLimit.Contains(uij.province))
                {
                    isInArea = true;
                }
                if (model.AreaLevel == "城市" && model.AreaLimit.Contains(uij.city))
                {
                    isInArea = true;
                }
            }
            else
            {
                isInArea = true;
            }
            if (!isInArea)
            {
                try
                {
                    Senparc.Weixin.MP.AdvancedAPIs.CustomApi.SendText(model.AppID, uij.openid, "对不起,该活动只限" + model.AreaLimit + "地区用户!");
                }
                catch (Exception e)
                {
                }
            }

            //判断返回体是否带有参数
            bool hasPara = !string.IsNullOrWhiteSpace(requestMessage.EventKey);


            string         popenid = hasPara ? requestMessage.EventKey.Substring(8) : null;
            Subscriber_BLL bll     = new Subscriber_BLL();

            //扫码者是否存在
            if (bll.GetCount(a => a.OpenID == uij.openid && a.AccountID == model.AccountID) > 0)
            {
                //如果存在(指的是数据库中有没有用的信息)
                Subscriber sub = bll.Get(a => a.OpenID == uij.openid && a.AccountID == model.AccountID);
                if (sub.IsOK == true)
                {
                    sub.FromOpenID = popenid;
                    bll.Update(sub);

                    //如果已关注
                    //Senparc.Weixin.MP.AdvancedAPIs.CustomApi.SendText(model.AppID, sub.OpenID, model.ReSubscribeWelcome);//吃菊
                }
                else
                {
                    //如果已取消关注
                    sub.FromOpenID = popenid;
                    sub.IsOK       = true;
                    bll.Update(sub);
                    try
                    {
                        CustomApi.SendText(model.AppID, sub.OpenID, model.ReSubscribeWelcome);
                    }
                    catch (Exception e)
                    {
                    }

                    //再次关注发送消息
                }
            }
            else
            {
                //如果不存在



                //添加扫码者信息
                Subscriber sub = new Subscriber
                {
                    SubscribeID         = Guid.NewGuid(),
                    AccountID           = model.AccountID,
                    NickName            = uij.nickname,
                    Province            = uij.province,
                    City                = uij.city,
                    Country             = uij.country,
                    OpenID              = uij.openid,
                    Sex                 = uij.sex,
                    HeadImgUrl          = uij.headimgurl,
                    FromOpenID          = popenid,
                    SubscribeTime       = DateTime.Parse("1970-01-01 08:00").AddSeconds(uij.subscribe_time),
                    Score               = 0,
                    SignScore           = 0,
                    DirectScore         = 0,
                    IndirectScore       = 0,
                    SignContinuityCount = 0,
                    UnSubscribeCount    = 0,
                    IsOK                = true
                };

                bll.Add(sub);
                //发送首次关注欢迎信息
                try
                {
                    CustomApi.SendText(model.AppID, sub.OpenID, model.SubscribeWelcome);
                }
                catch (Exception e)
                {
                }

                if (hasPara)
                {
                    //判断参数对应用户是否存在(第一级)
                    if (bll.GetCount(a => a.OpenID == popenid && a.AccountID == model.AccountID) > 0)
                    {
                        if (isInArea)
                        {
                            Subscriber psub = bll.Get(a => a.OpenID == popenid && a.AccountID == model.AccountID);
                            if (psub.DirectScore != null)
                            {
                                psub.DirectScore += model.SubscribeAddScore;
                            }
                            else
                            {
                                psub.DirectScore = model.SubscribeAddScore;
                            }
                            psub.DirectScoreUpdateTime =
                                DateTime.Parse("1970-01-01 08:00").AddSeconds(uij.subscribe_time);
                            if (psub.Score != null)
                            {
                                psub.Score += model.SubscribeAddScore;
                            }
                            else
                            {
                                psub.Score = model.SubscribeAddScore;
                            }

                            bll.Update(psub);

                            //发送第一级
                            StringBuilder msgp = new StringBuilder();
                            msgp.Append("恭喜,您有新的粉丝【" + uij.nickname + "】加入!\n");
                            msgp.Append("获得推广积分:" + model.SubscribeAddScore + "分,累计积分:" + psub.Score.ToString() + "分\n");
                            CustomApi.SendText(model.AppID, psub.OpenID, msgp.ToString());
                        }
                    }
                    else
                    {
                        if (isInArea)
                        {
                            //第一级用户不存在,需要补充信息
                            Senparc.Weixin.MP.AdvancedAPIs.User.UserInfoJson puij = UserApi.Info(model.AppID, popenid);
                            //补充上一级信息
                            Subscriber psub = new Subscriber
                            {
                                SubscribeID           = Guid.NewGuid(),
                                AccountID             = model.AccountID,
                                NickName              = puij.nickname,
                                Province              = puij.province,
                                City                  = puij.city,
                                Country               = puij.country,
                                OpenID                = puij.openid,
                                Sex                   = puij.sex,
                                HeadImgUrl            = puij.headimgurl,
                                SubscribeTime         = DateTime.Parse("1970-01-01 08:00").AddSeconds(puij.subscribe_time),
                                Score                 = model.SubscribeAddScore,
                                SignScore             = 0,
                                DirectScore           = model.SubscribeAddScore,
                                DirectScoreUpdateTime = sub.SubscribeTime,
                                IndirectScore         = 0,
                                SignContinuityCount   = 0,
                                UnSubscribeCount      = 0,
                                IsOK                  = true
                            };

                            bll.Add(psub);
                            //发送第一级
                            StringBuilder msgp = new StringBuilder();
                            msgp.Append("恭喜,您有新的粉丝【" + uij.nickname + "】加入!\n");
                            msgp.Append("获得推广积分:" + model.SubscribeAddScore + "分,累计积分:" + psub.Score.ToString() + "分\n");
                            CustomApi.SendText(model.AppID, psub.OpenID, msgp.ToString());
                        }
                        else
                        {
                            //第一级用户不存在,需要补充信息
                            Senparc.Weixin.MP.AdvancedAPIs.User.UserInfoJson puij = UserApi.Info(model.AppID, popenid);
                            //补充上一级信息
                            Subscriber psub = new Subscriber
                            {
                                SubscribeID           = Guid.NewGuid(),
                                AccountID             = model.AccountID,
                                NickName              = puij.nickname,
                                Province              = puij.province,
                                City                  = puij.city,
                                Country               = puij.country,
                                OpenID                = puij.openid,
                                Sex                   = puij.sex,
                                HeadImgUrl            = puij.headimgurl,
                                SubscribeTime         = DateTime.Parse("1970-01-01 08:00").AddSeconds(puij.subscribe_time),
                                Score                 = 0,
                                SignScore             = 0,
                                DirectScore           = 0,
                                DirectScoreUpdateTime = sub.SubscribeTime,
                                IndirectScore         = 0,
                                SignContinuityCount   = 0,
                                UnSubscribeCount      = 0,
                                IsOK                  = true
                            };

                            bll.Add(psub);
                            //发送第一级
                        }
                    }
                }
            }
        }
        //
        // GET: /WeiXin/Subscriber/

        public ActionResult Index(string code, string state)
        {
            if (string.IsNullOrEmpty(code))
            {
                return(Content("您拒绝了授权!"));
            }

            Guid accountid = Guid.Parse(state.Trim());

            OfficialAccount off = new OfficialAccount_BLL().Get(a => a.AccountID == accountid);

            OAuthAccessTokenResult result = new OAuthAccessTokenResult();

            //通过,用code换取access_token
            try
            {
                result = OAuthApi.GetAccessToken(off.AppID.Trim(), off.AppSecret.Trim(), code);
            }
            catch (Exception ex)
            {
                if (Session["OAuthAccessToken"] != null)
                {
                    result = Session["OAuthAccessToken"] as OAuthAccessTokenResult;
                    try
                    {
                        result = OAuthApi.RefreshToken(off.AppID.Trim(), result.refresh_token);
                    }
                    catch (Exception)
                    {
                        return(Content("错误:" + result.errmsg));
                    }
                }
                else
                {
                    return(Content("错误:" + result.errmsg));
                }
            }
            if (result.errcode != ReturnCode.请求成功)
            {
                return(Content("错误:" + result.errmsg));
            }


            Session["OAuthAccessTokenStartTime"] = DateTime.Now;
            Session["OAuthAccessToken"]          = result;
            OAuthUserInfo info = OAuthApi.GetUserInfo(result.access_token, result.openid);

            Subscriber_BLL subbll = new Subscriber_BLL();

            Subscriber mysub = subbll.Get(a => a.OpenID == info.openid);

            if (mysub != null)
            {
                ViewBag.SubscribeID = mysub.SubscribeID;
            }
            else
            {
                return(Content("对不起,您尚未关注该公众号!"));
            }
            return(View(mysub));
        }