Comparing version 1.5.6 to 1.5.7
79
app.js
const request = require('node-superfetch'); | ||
const deasync = require('deasync'); | ||
@@ -9,3 +8,3 @@ class CroxyApi { | ||
new Promise(async function(resolve, reject){ | ||
const { body } = await request.get('https://croxy-api.glitch.me/keychecker/'+keys); | ||
const { body } = await request.get('https://croxy-api-web.glitch.me/keychecker/'+keys); | ||
if(body.key === false) throw new Error('Girdiğiniz key geçersizdir.') | ||
@@ -18,3 +17,3 @@ global.key = keys | ||
try { | ||
const { body } = await request.get('https://croxy-api.glitch.me/doviz/'+global.key); | ||
const { body } = await request.get('https://croxy-api-web.glitch.me/doviz/'+global.key); | ||
let veriler = {}; | ||
@@ -39,3 +38,3 @@ body.forEach(v => { | ||
try { | ||
const { body } = await request.get('https://croxy-api.glitch.me/deprem/'+sayi+'/'+global.key); | ||
const { body } = await request.get('https://croxy-api-web.glitch.me/deprem/'+sayi+'/'+global.key); | ||
return body | ||
@@ -51,3 +50,3 @@ } catch (err) { | ||
try { | ||
const { body } = await request.get("https://croxy-api.glitch.me/minecraft/sunucu/"+yazi.toLowerCase()+'/'+global.key); | ||
const { body } = await request.get("https://croxy-api-web.glitch.me/minecraft/sunucu/"+yazi.toLowerCase()+'/'+global.key); | ||
return body | ||
@@ -63,3 +62,3 @@ } catch (err) { | ||
try { | ||
const { body } = await request.get("https://croxy-api.glitch.me/minecraft/oyuncu/"+yazi.toLowerCase()+'/'+global.key); | ||
const { body } = await request.get("https://croxy-api-web.glitch.me/minecraft/oyuncu/"+yazi.toLowerCase()+'/'+global.key); | ||
return body | ||
@@ -72,17 +71,6 @@ } catch (err) { | ||
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/"+yazi+'/'+global.key); | ||
return body | ||
} catch (err) { | ||
if(err.message === "503 Service Unavailable") throw new TypeError("Verilerin geldiği sitede bir hata ortaya çıktı. Lütfen tekrar deneyin. Eğer hala çalışmazsa lütfen modülün Discord destek sunucusuna gelin. https://discord.gg/mswG4px") | ||
throw new TypeError(err); | ||
} | ||
} | ||
static async film(yazi) { | ||
if(!yazi) throw new TypeError('Lütfen bir film ismi gir. Örneğin; Ayla') | ||
try { | ||
const { body } = await request.get("https://croxy-api.glitch.me/film/"+yazi+'/'+global.key); | ||
const { body } = await request.get("https://croxy-api-web.glitch.me/film/"+yazi+'/'+global.key); | ||
return body | ||
@@ -98,3 +86,3 @@ } catch (err) { | ||
try { | ||
const { body } = await request.get("https://croxy-api.glitch.me/dizi/"+yazi+'/'+global.key); | ||
const { body } = await request.get("https://croxy-api-web.glitch.me/dizi/"+yazi+'/'+global.key); | ||
return body | ||
@@ -110,3 +98,3 @@ } catch (err) { | ||
try { | ||
const { body } = await request.get("https://croxy-api.glitch.me/sarki/"+yazi.toLowerCase()+'/'+global.key); | ||
const { body } = await request.get("https://croxy-api-web.glitch.me/sarki/"+yazi.toLowerCase()+'/'+global.key); | ||
return body | ||
@@ -123,3 +111,3 @@ } catch (err) { | ||
try { | ||
const { body } = await request.get("https://croxy-api.glitch.me/sifreolustur/"+sayi+'/'+global.key); | ||
const { body } = await request.get("https://croxy-api-web.glitch.me/sifreolustur/"+sayi+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
@@ -139,3 +127,3 @@ } catch (err) { | ||
try { | ||
const { body } = await request.get(`https://croxy-api.glitch.me/birimcevir/${birim}/${sayi}`+'/'+global.key); | ||
const { body } = await request.get(`https://croxy-api-web.glitch.me/birimcevir/${birim}/${sayi}`+'/'+global.key); | ||
return body | ||
@@ -152,3 +140,3 @@ } catch (err) { | ||
try { | ||
const { body } = await request.get(`https://croxy-api.glitch.me/ceviri/${dil}/${yazi}`+'/'+global.key); | ||
const { body } = await request.get(`https://croxy-api-web.glitch.me/ceviri/${dil}/${yazi}`+'/'+global.key); | ||
if(body.sonuç === yazi) throw new TypeError("Lütfen geçerli bir dil girin. Örneğin; tr, es, en vb.") | ||
@@ -166,6 +154,6 @@ return body.hata ? body.hata : body.sonuç | ||
if(!format) { | ||
var { body } = await request.get(`https://croxy-api.glitch.me/tarih/normal/${date}`+'/'+global.key); | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/tarih/normal/${date}`+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
} else { | ||
var { body } = await request.get(`https://croxy-api.glitch.me/tarih/normal/${date}/${format}`+'/'+global.key); | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/tarih/normal/${date}/${format}`+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
@@ -181,3 +169,3 @@ } | ||
try { | ||
var { body } = await request.get(`https://croxy-api.glitch.me/rastgeleveri/${val}`+'/'+global.key); | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/rastgeleveri/${val}`+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
@@ -189,7 +177,12 @@ } catch (err) { | ||
} | ||
static async kalansüre(val) { | ||
static async kalansüre(val, format) { | ||
if(!val) throw new TypeError('Lütfen bir tarih girin. Örneğin; 101204827 ya da January 1, 2022') | ||
try { | ||
var { body } = await request.get(`https://croxy-api.glitch.me/kalansure/${val}`+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/kalansure/${val}`+'/'+global.key); | ||
if(!format) { | ||
return body.hata ? body.hata : body.sonuç | ||
} else { | ||
var sonuç = body.sonuç.replace(/[A-z]+/g,'').replace("ü", "").replace("ı", "").split(" ") | ||
return body.hata ? body.hata : format.replace(/\[+y]+/g, sonuç[0] || 0).replace(/\[+a]+/g, sonuç[1] || 0).replace(/\[+h]+/g, sonuç[2] || 0).replace(/\[+g]+/g, sonuç[3] || 0).replace(/\[+s]+/g, sonuç[4] || 0).replace(/\[+S]+/g, sonuç[5] || 0).replace(/\s+/g,' ') | ||
} | ||
} catch (err) { | ||
@@ -200,7 +193,12 @@ if(err.message === "503 Service Unavailable") throw new TypeError("Verilerin geldiği sitede bir hata ortaya çıktı. Lütfen tekrar deneyin. Eğer hala çalışmazsa lütfen modülün Discord destek sunucusuna gelin. https://discord.gg/mswG4px") | ||
} | ||
static async geçensüre(val) { | ||
static async geçensüre(val, format) { | ||
if(!val) throw new TypeError('Lütfen bir tarih girin. Örneğin; 81204827 ya da January 1, 2020') | ||
try { | ||
var { body } = await request.get(`https://croxy-api.glitch.me/gecensure/${val}`+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/gecensure/${val}`+'/'+global.key); | ||
if(!format) { | ||
return body.hata ? body.hata : body.sonuç | ||
} else { | ||
var sonuç = body.sonuç.replace(/[A-z]+/g,'').replace("ü", "").replace("ı", "").split(" ") | ||
return body.hata ? body.hata : format.replace(/\[+y]+/g, sonuç[0] || 0).replace(/\[+a]+/g, sonuç[1] || 0).replace(/\[+h]+/g, sonuç[2] || 0).replace(/\[+g]+/g, sonuç[3] || 0).replace(/\[+s]+/g, sonuç[4] || 0).replace(/\[+S]+/g, sonuç[5] || 0).replace(/\s+/g,' ') | ||
} | ||
} catch (err) { | ||
@@ -211,2 +209,13 @@ if(err.message === "503 Service Unavailable") throw new TypeError("Verilerin geldiği sitede bir hata ortaya çıktı. Lütfen tekrar deneyin. Eğer hala çalışmazsa lütfen modülün Discord destek sunucusuna gelin. https://discord.gg/mswG4px") | ||
} | ||
static async namaz(şehir) { | ||
if(!şehir) throw new TypeError('Lütfen bir şehir girin.') | ||
try { | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/namazvakti/${şehir}`+'/'+global.key); | ||
return body.hata ? body.hata : body | ||
} catch (err) { | ||
if(err.message === "503 Service Unavailable") throw new TypeError("Verilerin geldiği sitede bir hata ortaya çıktı. Lütfen tekrar deneyin. Eğer hala çalışmazsa lütfen modülün Discord destek sunucusuna gelin. https://discord.gg/mswG4px") | ||
throw new TypeError(err); | ||
} | ||
} | ||
@@ -217,6 +226,6 @@ static async sayısalTarih(date, format) { | ||
if(!format) { | ||
var { body } = await request.get(`https://croxy-api.glitch.me/tarih/sayisal/${date}`+'/'+global.key); | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/tarih/sayisal/${date}`+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
} else { | ||
var { body } = await request.get(`https://croxy-api.glitch.me/tarih/sayisal/${date}/${format}`+'/'+global.key); | ||
var { body } = await request.get(`https://croxy-api-web.glitch.me/tarih/sayisal/${date}/${format}`+'/'+global.key); | ||
return body.hata ? body.hata : body.sonuç | ||
@@ -239,3 +248,2 @@ } | ||
mcoyuncu: function(x) { return CroxyApi.mcoyuncu(x) }, | ||
twitter: function(x) { return CroxyApi.twitter(x) }, | ||
film: function(x) { return CroxyApi.film(x) }, | ||
@@ -245,2 +253,3 @@ dizi: function(x) { return CroxyApi.dizi(x) }, | ||
birimçevir: function(x, y) { return CroxyApi.birimçevir(x, y) }, | ||
namaz: function(x) { return CroxyApi.namaz(x) }, | ||
çeviri: function(x, y) { return CroxyApi.çeviri(x, y) }, | ||
@@ -247,0 +256,0 @@ tarih: function(x, y) { return CroxyApi.tarih(x, y) }, |
{ | ||
"bundleDependencies": false, | ||
"dependencies": { | ||
"node-superfetch": "^0.1.10", | ||
"croxydb": "^0.0.1" | ||
"croxydb": "latest", | ||
"node-superfetch": "^0.1.10" | ||
}, | ||
@@ -40,3 +40,5 @@ "deprecated": false, | ||
"duration-format", | ||
"moment" | ||
"moment", | ||
"namaz", | ||
"namaz vakti" | ||
], | ||
@@ -49,3 +51,3 @@ "license": "ISC", | ||
}, | ||
"version": "1.5.6" | ||
"version": "1.5.7" | ||
} |
@@ -7,5 +7,4 @@ # Croxy-Api - Gelişmiş Bir Türkçe Modül! | ||
#Yenilikler | ||
* "instagram" fonksiyonu sonsuza dek kaldırıldı. | ||
* "geçensüre" fonksiyonu eklendi. Belirlenen tarihten, şu anki tarihe kadar ne kadar geçtiğini gösterir. (X yıl X ay X gün X saat X dakika X saniye) | ||
* "kalansüre" fonksiyonu eklendi. Belirlenen tarihe ne kadar kaldığını gösterir. (X yıl X ay X gün X saat X dakika X saniye) | ||
* "twitter" fonksiyonu sonsuza dek kaldırıldı. | ||
* "namaz" fonksiyonu eklendi. Girilen şehrin namaz vakitlerine ulaşabilirsiniz. | ||
@@ -12,0 +11,0 @@ #Dökümantasyon |
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
16770
226
19
+ Addedcroxydb@0.0.26(transitive)
- Removedcroxydb@0.0.1(transitive)
- Removedfs@0.0.1-security(transitive)
Updatedcroxydb@latest