Ejemplo n.º 1
0
        public HttpResponseMessage validateMember(Model model)
        {
            //string result = "";
            LoginApiResponseData response = new LoginApiResponseData();
            Business             business = new Business();

            try
            {
                //MemberViewModel model = (MemberViewModel)JsonConvert.DeserializeObject(value, typeof(MemberViewModel));
                MemberViewModel member = business.isLogin(model.account, model.password);
                if (member.Account != "")
                {
                    response.MemberViewModel = member;
                    response.Result          = "1";
                }
            }
            catch (Exception ex)
            {
                business.addErrorLog("WebApi", "isLoginValidate", ex.Message);
                //Utility.ErrorMessageToLogFile(ex);
                //throw;
            }

            string result = JsonConvert.SerializeObject(response);

            return(new HttpResponseMessage()
            {
                Content = new StringContent(result)
            });
        }
Ejemplo n.º 2
0
        public async Task <LoginApiResponseData> getLoginValidate(string account, string password)
        {
            HttpClient client = new HttpClient();

            client.BaseAddress = new Uri(Properties.Settings.Default.ApiHost);
            var content = new FormUrlEncodedContent(new[]
            {
                new KeyValuePair <string, string>("account", account),
                new KeyValuePair <string, string>("password", Utility.getSecretCode(password))
            });
            var result = await client.PostAsync("/api/WebApi/validateMember", content);

            string resultJson = await result.Content.ReadAsStringAsync();

            LoginApiResponseData response = (LoginApiResponseData)JsonConvert.DeserializeObject(resultJson, typeof(LoginApiResponseData));

            return(response);
        }
Ejemplo n.º 3
0
        public async Task <ActionResult> Login(string account, string password, string returnUrl = "/Home/Login")
        {
            Business business = new Business();

            MemberViewModel member = new MemberViewModel();

            LoginApiResponseData response = new LoginApiResponseData();

            response = await getLoginValidate(account, password);

            member = response.MemberViewModel;

            //PostLosgin(account, password);


            //HttpClient client = new HttpClient();
            //client.BaseAddress = new Uri("http://220.130.10.50:6868");
            //var content = new FormUrlEncodedContent(new[]
            //{
            //    new KeyValuePair<string, string>("account", account),
            //    new KeyValuePair<string, string>("password", Utility.getSecretCode(password))
            //});
            //var result = await client.PostAsync("/api/WebApi/validateMember", content);
            //string resultJson = await result.Content.ReadAsStringAsync();

            //ClassApiResponseData response = (ClassApiResponseData)JsonConvert.DeserializeObject(resultJson, typeof(ClassApiResponseData));



            //using (WebClient client = new WebClient() { Encoding = Encoding.UTF8 })
            //{
            //    //client.UploadStringCompleted += client_UploadStringCompleted;
            //    client.Headers[HttpRequestHeader.ContentType] = "application/json";

            //    ClassData data = new ClassData() { Param1 = "value1", Param2 = "value2" };

            //    string json = JsonConvert.SerializeObject(data);

            //    client.UploadStringAsync(new Uri(API_HOST + PostNews), json);
            //}

            //using (var client = new HttpClient())
            //{
            //    client.BaseAddress = new Uri("http://220.130.10.50:6868");
            //    client.DefaultRequestHeaders.Accept.Clear();
            //    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

            //    var response = client.GetAsync("api/WebApi/isLogin").Result;
            //    if (response.IsSuccessStatusCode)
            //    {
            //        string responseString = response.Content.ReadAsStringAsync().Result;
            //    }
            //}


            if (response.Result == "1")
            {
                Session["account"] = member.Account;
                Session["name"]    = member.Name;
                Session["role"]    = member.Role;
                //Session["department_id"] =

                switch (member.Role)
                {
                //buyer
                case 1:
                    return(RedirectToAction("Index", "Mart"));

                //seller
                case 2:
                    return(RedirectToAction("Index", "BackOffice"));

                case 3:
                    return(RedirectToAction("Index", "BackOffice"));

                default:
                    return(RedirectToAction("Index", "Mart"));
                }



                //role 3 admin,role 1 seller, role 2 buyer
            }
            else
            {
                ModelState.AddModelError("", "帳號或密碼錯誤");
                return(View());
            }

            //return View();

            //if (!ModelState.IsValid)
            //{
            //    return View(model);
            //}

            // 這不會計算為帳戶鎖定的登入失敗
            // 若要啟用密碼失敗來觸發帳戶鎖定,請變更為 shouldLockout: true
            //var result = await SignInManager.PasswordSignInAsync(model, model.Password, model.RememberMe, shouldLockout: false);



            //BillingEntities db = new BillingEntities();

            //using (var db = new BillingEntities())
            //{
            //    // Query for all blogs with names starting with B
            //    var admins = from b in db.admins
            //                 where b.account == model.Account && b.password == model.Password
            //                 select b;

            //    var admin = admins
            //        .FirstOrDefault();

            //    if (admin != null)
            //    {
            //        if (admin.account == model.Account && admin.password == model.Password)
            //        {
            //            //ModelState.AddModelError("", "登入成功");
            //            Session["account"] = model.Account;
            //            Session["user_id"] = admin.id;
            //            //Session["department_id"] =
            //            return RedirectToAction("Index", "BackOffice");
            //        }
            //        else
            //        {
            //            ModelState.AddModelError("", "帳號或密碼錯誤");
            //            return View();
            //        }
            //    }
            //    else
            //    {
            //        ModelState.AddModelError("", "帳號或密碼錯誤");
            //        return View();
            //    }


            //}
        }