Esempio n. 1
0
 [HttpPost("EditByID")]                                                              //Chỉnh sửa dữ liệu loại hình kinh doanh quán ăn
 public IActionResult EditByID(string id, [FromBody] BusinessType businessType)
 {
     try{
         var           identity = HttpContext.User.Identity as ClaimsIdentity;       //khai báo biến danh tính của token
         IList <Claim> claim    = identity.Claims.ToList();                          //Danh sách các biến trong identity
         string        Email    = claim[1].Value;                                    //Email của token
         User          infoUser = new User();                                        //Khai bao biến thông tin người dùng
         if (infoUser.kiemtrathoigianlogin(DateTime.Parse(claim[0].Value)) == true)  //kiểm tra thời gian đăng nhập còn không
         {
             if (infoUser.checkAdmin(Email) == true)                                 //Kiểm tra có phải admin không
             {
                 BusinessType businessType1 = new BusinessType();                    //Khai báo biến Model BusinessType
                 businessType1.AddbyidToFireBase(id, businessType);                  //Update data
                 return(Ok(new[] { "sửa thành công" }));
             }
             else
             {
                 return(Ok(new[] { "Bạn Không có quyền" }));
             }
         }
         else
         {
             return(Ok(new[] { "Bạn cần đăng nhập" }));
         }
     }
     catch {
         return(Ok(new[] { "Error" }));
     }
 }