Skip to content

Diyanet İşleri Başkanlığı Namaz Vakti Api Kullanım Örneği

Notifications You must be signed in to change notification settings

DinIsleriYuksekKurulu/AwqatSalah

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Diyanet Namaz Vakitleri

Diyanet İşleri Başkanlığı namaz vakitleri; Din İşleri Yüksek Kurulu Üye ve Uzmanları tarafından, İslam dininin kuralları çerçevesinde sınırı çizilmiş olan kurallar çerçevesinde, Vakit Hesaplama Uzmanı ve Astronomlar tarafından gerekli teknik aletlerin yanı sıra gözlemler ile bilimsel ve dini olarak hesaplanmaktadır. Hesaplanan namaz vakitlerinin, geliştiricilerin erişimine https://awqatsalah.diyanet.gov.tr adresinden bir api aracılığıyla açmamızla birlikte ilgili Api servisinin etkin ve nasıl kullanılacağına yönelik bu örnek çalışmayı yapmış bulunmaktayım.

Uygulama API servisi olarak tasarlanmıştır. Yazılım dili olarak C# ile yazılmıştır. Ortam olarak ise açık kaynak yapıya sahip .Net Core teknolojisi kullanılmıştır. Ayrıca uygulama geliştirme sürecinde SOLID kurallarına riayet edilmiş, tasarım deseni olarak Repository Pattern kullanılarak bütün bağımlılıklar soyut bir yapıya kavuşturulmuştur. Uygulama varsayılan bir biçimde Exception Handler mekanizmasına sahiptir. Yine basit bir kullanıcı doğrulaması yazılmış ancak aktif edilmemiştir. Program.cs içerisinden bunu aktif edebilirsiniz.

builder.Services
    .AddControllers()
    //.AddControllers(opt => opt.Filters.Add<ClientAtionFilter>())

Not: .AddControllers() satırını kapatarak .AddControllers(opt => opt.Filters.Add<ClientAtionFilter>()) satırını açınız.

Yapmanız gereken tek şey bu projeyi kendi Github reponuza çekmek. Ardından appsettings.json dosyasındaki size verilen kullanıcı adı ve şifreyi aşağıdaki örnekteki yere yazmak.

"AwqatSalahSettings": {
    "ApiUri": "https://awqatsalah.diyanet.gov.tr/",
    "TokenLifetimeMinutes": "45",
    "RefreshTokenLifetimeMinutes": "15",
    "UserName": "",
    "Password": "
  },

Not: Unutmayın Awqat Salah Apisinin her bir endpointi için 5 istek hakkınız bulunuyor.


Diyanet Awqat Salah

Prayer times of the Presidency of Religious Affairs are calculated scientifically and religiously by the Members and Experts of the High Council of Religious Affairs, within the framework of the rules of the Islamic religion, by the Time Calculator Specialist and Astronomers, as well as the necessary technical tools, as well as observations. I have made this case study on how to use the relevant Api service effectively, after we opened the calculated prayer times to developers' access via an API at https://awqatsalah.diyanet.gov.tr.

The application is designed as an API service. It is written in C# as the programming language. As the environment, .Net Core technology with open source structure was used. In addition, SOLID rules were complied with during the application development process, and all dependencies were made abstract by using Repository Pattern as the design pattern. The application has the Exception Handler mechanism by default. Again, a simple user authentication was written but not activated. You can enable it in Program.cs.

builder.Services
    .AddControllers()
    //.AddControllers(opt => opt.Filters.Add<ClientAtionFilter>())

Note: .AddControllers() closing the line .AddControllers(opt => opt.Filters.Add<ClientAtionFilter>()) open the line.

All you have to do is pull this project to your own Github repo. Then write the username and password given to you in the appsettings.json file to the place in the example below

"AwqatSalahSettings": {
    "ApiUri": "https://awqatsalah.diyanet.gov.tr/",
    "TokenLifetimeMinutes": "45",
    "RefreshTokenLifetimeMinutes": "15",
    "UserName": "",
    "Password": "
  },

Note: Remember, you have 5 requests for each endpoint of the Awqat Salah API.

License

MIT

I hope you say that. Allah bless you.

About

Diyanet İşleri Başkanlığı Namaz Vakti Api Kullanım Örneği

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%