예제 #1
0
 public LoginController(IUserService userService, IGirisService girisService, IConfiguration configuration, IYetkiService yetkiService)
 {
     Configuration = configuration;
     _userService  = userService;
     _yetkiService = yetkiService;
     _girisService = girisService;
 }
예제 #2
0
 public AccountController(IKullaniciService kullaniciService, IGirisService girisService, IConfiguration configuration, ITutorLessonService tutorLessonService, ILessonService lessonService)
 {
     Configuration       = configuration;
     _kullaniciService   = kullaniciService;
     _girisService       = girisService;
     _tutorLessonService = tutorLessonService;
     _lessonService      = lessonService;
 }
예제 #3
0
        public async Task Invoke(HttpContext context, IGirisService girisService)
        {
            try
            {
                //var sonuc = new SonucDTO();
                var token = context.Request.Headers["Authorization"].ToString().Replace("Bearer ", string.Empty);
                if (!string.IsNullOrEmpty(token))
                {
                    var handler = new JwtSecurityTokenHandler();
                    var tokenS  = handler.ReadToken(token) as JwtSecurityToken;
                    var expDate = tokenS.ValidTo;
                    if (expDate < DateTime.UtcNow)
                    {
                        context.Response.StatusCode  = 200;
                        context.Response.ContentType = "application/json";
                        context.Response.Headers.Add("exception", "Unauthorized");

                        /*sonuc.Mesaj.Add(new MesajDTO()
                         * {
                         *  Kod = HttpStatusCode.Unauthorized,
                         *  Aciklama = "Oturum süreniz dolmuştur! Lütfen tekrar oturum açınız",
                         *  Durum = EDurum.HATA
                         * });*/
                        //sonuc.Durum = EDurum.HATA;
                        //var json = JsonConvert.SerializeObject(sonuc, _jsonSettings);
                        //await context.Response.WriteAsync(json);
                    }
                    else
                    {
                        var kullaniciId = Convert.ToInt32(tokenS.Claims.First(claim => claim.Type == "unique_name").Value);
                        var girisDto    = girisService.KullanicininSonTokenBilgisi(kullaniciId);

                        if (girisDto != null && girisDto.Token == token)
                        {
                            await _next.Invoke(context);
                        }
                        else
                        {
                            context.Response.StatusCode  = 200;
                            context.Response.ContentType = "application/json";
                            context.Response.Headers.Add("exception", "Unauthorized");

                            /*sonuc.Mesaj.Add(new MesajDTO()
                             * {
                             *  Kod = HttpStatusCode.Unauthorized,
                             *  Aciklama = "Yerinize başka bir oturum açıldığından dolayı işleminiz sonlandırıldı!",
                             *  Durum = EDurum.HATA
                             * });
                             * sonuc.Durum = EDurum.HATA;
                             * var json = JsonConvert.SerializeObject(sonuc, _jsonSettings);
                             * await context.Response.WriteAsync(json);*/
                        }
                    }
                }
                else
                {
                    await _next.Invoke(context);
                }
            }
            catch (Exception ex)
            {
                throw;
            }
        }
        public async Task Invoke(HttpContext context, IGirisService girisService)
        {
            try
            {
                var sonuc = new ResultDTO();
                var token = context.Request.Headers["Authorization"].ToString().Replace("Bearer ", string.Empty);
                if (!string.IsNullOrEmpty(token))
                {
                    var handler = new JwtSecurityTokenHandler();
                    var tokenS  = handler.ReadToken(token) as JwtSecurityToken;
                    var expDate = tokenS.ValidTo;
                    if (expDate < DateTime.UtcNow)
                    {
                        context.Response.StatusCode  = 200;
                        context.Response.ContentType = "application/json";
                        context.Response.Headers.Add("exception", "Unauthorized");
                        sonuc.Message.Add(new MessageDTO()
                        {
                            Code        = HttpStatusCode.Unauthorized,
                            Description = "Your session has expired! Please sign in again..",
                            Status      = EDurum.ERROR
                        });
                        sonuc.Status = EDurum.ERROR;
                        var json = JsonConvert.SerializeObject(sonuc, _jsonSettings);
                        await context.Response.WriteAsync(json);
                    }
                    else
                    {
                        var kullaniciId = Convert.ToInt32(tokenS.Claims.First(claim => claim.Type == "unique_name").Value);
                        var girisDto    = girisService.KullanicininSonTokenBilgisi(kullaniciId);

                        if (girisDto != null && girisDto.Token == token)
                        {
                            await _next.Invoke(context);
                        }
                        else
                        {
                            context.Response.StatusCode  = 200;
                            context.Response.ContentType = "application/json";
                            context.Response.Headers.Add("exception", "Unauthorized");
                            sonuc.Message.Add(new MessageDTO()
                            {
                                Code        = HttpStatusCode.Unauthorized,
                                Description = "Your transaction has been terminated because another session has been opened for you!",
                                Status      = EDurum.ERROR
                            });
                            sonuc.Status = EDurum.ERROR;
                            var json = JsonConvert.SerializeObject(sonuc, _jsonSettings);
                            await context.Response.WriteAsync(json);
                        }
                    }
                }
                else
                {
                    await _next.Invoke(context);
                }
            }
            catch (Exception ex)
            {
                throw;
            }
        }