Comparing version 1.3.0 to 1.3.1
23
app.js
@@ -164,5 +164,15 @@ const request = require('node-superfetch'); | ||
} | ||
static async twitter(yazi) { | ||
if(!yazi) throw new TypeError('Lütfen bir hesap ismi gir. Örneğin; bburakgiderr') | ||
try { | ||
const { body } = await request.get("https://croxy-api.glitch.me/twitter?key=genel&ara="+yazi()); | ||
return body | ||
} catch (err) { | ||
throw new TypeError(err); | ||
} | ||
} | ||
static async şarkı(yazi) { | ||
if(!yazi) throw new TypeError('Lütfen bir şarkı ismi gir. Örneğin; Ezhel Felaket (Arada - vs. olmayacak)') | ||
if(!yazi) throw new TypeError('Lütfen bir şarkı ismi gir. Örneğin; Ezhel Felaket') | ||
try { | ||
@@ -219,9 +229,12 @@ const { body } = await request.get("https://croxy-api.glitch.me/sarkisozu?key=genel&ara="+yazi.toLowerCase()); | ||
const tarih = new Date(Date.UTC(x.getFullYear(), x.getMonth(), x.getDate(), x.getHours(), x.getMinutes(), x.getSeconds())) | ||
var aylar = ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"]; | ||
var günler = ["Paz", "Pts", "Sal", "Çar", "Per", "Cum", "Cts"]; | ||
var aylarYaziKisa = ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"]; | ||
var aylarYaziUzun = ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"]; | ||
var aylarSayi = ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"]; | ||
var günlerUzun = ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi"]; | ||
var günlerKısa = ["Pzr", "Pst", "Sal", "Çrş", "Prş", "Cum", "Cmts"]; | ||
const saat = `${tarih.getHours() < 10 ? "0" + tarih.getHours() : tarih.getHours()}:${tarih.getMinutes() < 10 ? "0" + tarih.getMinutes() : tarih.getMinutes()}:${tarih.getSeconds() < 10 ? "0" + tarih.getSeconds() : tarih.getSeconds()}` | ||
var z = `${tarih.getDate() < 10 ? "0" + tarih.getDate() : tarih.getDate()} ${aylar[tarih.getMonth()]} ${tarih.getFullYear()} ${günler[tarih.getDay()]} ${saat}` | ||
var z = `${tarih.getDate() < 10 ? "0" + tarih.getDate() : tarih.getDate()} ${aylarYaziUzun[tarih.getMonth()]} ${tarih.getFullYear()} ${günler[tarih.getDay()]} ${saat}` | ||
if(z.includes(NaN || undefined)) throw new TypeError(`Lütfen geçerli bir tarih girin.`); | ||
if(format) { | ||
const y = format.replace("S", tarih.getHours() < 10 ? "0" + tarih.getHours() : tarih.getHours()).replace("D", tarih.getMinutes() < 10 ? "0" + tarih.getMinutes() : tarih.getMinutes()).replace("s", tarih.getSeconds() < 10 ? "0" + tarih.getSeconds() : tarih.getSeconds()).replace("G", tarih.getDate() < 10 ? "0" + tarih.getDate() : tarih.getDate()).replace("A", aylar[tarih.getMonth()]).replace("Y", tarih.getFullYear()).replace("g", günler[tarih.getDay()]) | ||
const y = format.replace("S", tarih.getHours() < 10 ? "0" + tarih.getHours() : tarih.getHours()).replace("D", tarih.getMinutes() < 10 ? "0" + tarih.getMinutes() : tarih.getMinutes()).replace("s", tarih.getSeconds() < 10 ? "0" + tarih.getSeconds() : tarih.getSeconds()).replace("G", tarih.getDate() < 10 ? "0" + tarih.getDate() : tarih.getDate()).replace("A", aylarYaziUzun[tarih.getMonth()]).replace("A_Kısa", aylarYaziKisa[tarih.getMonth()]).replace("A_Sayı", aylarSayi[tarih.getMonth()]).replace("Y", tarih.getFullYear()).replace("g", günlerUzun[tarih.getDay()]).replace("g_Uzun", günlerUzun[tarih.getDay()]).replace("g_Kısa", günlerKısa[tarih.getDay()]) | ||
return y | ||
@@ -228,0 +241,0 @@ } else { |
@@ -11,2 +11,3 @@ { | ||
"instagram", | ||
"twitter", | ||
"hesap", | ||
@@ -35,3 +36,3 @@ "arama", | ||
}, | ||
"version": "1.3.0" | ||
"version": "1.3.1" | ||
} |
@@ -6,3 +6,5 @@ # CroxyApi - Gelişmiş Bir Türkçe Modül! | ||
#Yenilikler | ||
* "instagram" fonksiyonu eklendi. | ||
* "instagram" fonksiyonuna eklemeler yapıldı. | ||
* "twitter" fonksiyonu eklendi. | ||
* "tarih" fonksiyonuna dev güncelleme geldi. Daha fazla bilgi için en aşağı kaydırın. | ||
@@ -39,2 +41,15 @@ #Dökümantasyon | ||
``` | ||
# Twitter Hesap Arama | ||
```js | ||
croxy.twitter("bburakgiderr") | ||
/*{"isim":"burak (@bburakgiderr)", | ||
"tweetSayısı":25, | ||
"takipçi":27, | ||
"takipEdilen":13, | ||
"beğeni":22, | ||
"website":"http://xn--hayattanskldm-cbcbc.com", | ||
"katılmaTarihi":"13 Tem 2019/10:41", | ||
"biyografi":"instagram: @bburakgiderr","profilFotoğrafı":"https://pbs.twimg.com/profile_images/1196531507122360322/SlPRE53Z_400x400.jpg" }*/ | ||
``` | ||
# Instagram Hesap Arama | ||
@@ -44,10 +59,11 @@ ```js | ||
/*{ "isim":"killa", | ||
/* { "isim":"killa", | ||
"kullanıcıAdı":"bburakgiderr", | ||
"takipçi":"440", | ||
"takipEdilen":"418", | ||
"gönderi":"0", | ||
"biyografi":"efyal | '22\nhayattayım piç hayatta", | ||
"profilFotoğrafı":"https://scontent-iad3-1.cdninstagram.com/v/t51.2885-19/s150x150/78765540_497196224488244_8741559289874743296_n.jpg?_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_ohc=Y4_l3euPb5MAX-tGP3v&oh=e836881348cc3959d8c7be4af33fa1d3&oe=5E939FDB" } | ||
``` | ||
"takipçi":441, | ||
"takipEdilen":419, | ||
"gönderi":0, | ||
"biyografi":"efyal | '22\nhayattayım piç hayatta", | ||
"doğrulanmışMı":false, | ||
"gizliMi":true, | ||
"profilFotoğrafı":"https://scontent-iad3-1.cdninstagram.com/v/t51.2885-19/s150x150/78765540_497196224488244_8741559289874743296_n.jpg?_nc_ht=scontent-iad3-1.cdninstagram.com&_nc_ohc=woB5wiMyxWIAX_5NBUI&oh=ee521a3182bbe6e10813b75e99cc95a2&oe=5E939FDB" }*/``` | ||
# Dizi Arama | ||
@@ -133,11 +149,29 @@ ```js | ||
const tarih = new Date() | ||
//Eğer formatsız yapmak isterseniz: | ||
croxy.tarih(tarih) | ||
//01 Ocak 1970 Perşembe 00:00:00 | ||
//01 Oca 1970 Per 00:00:00 | ||
//Formatlı yapmak isterseniz: | ||
croxy.tarih(tarih, 'G A Y S:D:s') //"Gün Ay Yıl Saat:Dakika:Saniye" şeklinde verecektir. İstediğiniz gibi düzenleyebilirsiniz. | ||
croxy.tarih(tarih, 'G A Y S:D:s g') //"Gün Ay Yıl Saat:Dakika:Saniye Gün" şeklinde verecektir. İstediğiniz gibi düzenleyebilirsiniz. | ||
//YENİ GÜNCELLEMEDE GELENLER | ||
croxy.tarih(tarih, 'G A_Kısa Y') | ||
//01 Oca 1970 | ||
croxy.tarih(tarih, 'G A_Uzun Y') | ||
//01 Ocak 1970 | ||
croxy.tarih(tarih, 'G A_Sayı Y') | ||
//01 01 1970 | ||
croxy.tarih(tarih, 'G A Y g_Uzun') | ||
//01 Ocak 1970 Perşembe | ||
croxy.tarih(tarih, 'G A Y g_Kısa') | ||
//01 Ocak 1970 Prş | ||
``` | ||
* Eklenecekler | ||
> Twitter hesap arama | ||
> "twitter" fonksiyonuna 'gizliMi, doğrulanmışMı, doğumGünü' verileri eklenecek. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17002
222
174