forked from cutls/OpenSticker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilder.ts
More file actions
135 lines (133 loc) · 4.04 KB
/
builder.ts
File metadata and controls
135 lines (133 loc) · 4.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import JSON5 from 'https://cdn.jsdelivr.net/gh/cutls/json5-deno@0.0.1/lib/index.ts'
import { ISticker, IStickerOutPut } from './interfaces/json5.ts'
import { walkSync, readJsonSync, writeJsonSync, ensureDirSync, ensureFileSync } from 'https://deno.land/std@0.68.0/fs/mod.ts'
const decoder = new TextDecoder('utf-8')
const alphabets = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0']
const def = {
mastodon: {
bgColor: ['#26a'],
fontColor: '#fff',
},
pleroma: {
bgColor: ['#123'],
fontColor: '#da5',
},
misskey: {
bgColor: ['#444'],
fontColor: '#3c9',
},
misskeylegacy: {
bgColor: ['#444'],
fontColor: '#3c9',
},
pixelfed: {
bgColor: ['#fff'],
fontColor: '#000',
},
}
/*
チェック
・ドメイン名のバリデーション
*/
export default function () {
main()
}
async function main() {
let writeCache: { [key: string]: string } = {}
let write = []
ensureFileSync('./output/cache.json')
let cache = null
try {
cache = readJsonSync('./output/cache.json') as null | { [key: string]: string }
} catch {}
for (const alphabet of alphabets) {
ensureDirSync(`./resources/${alphabet}`)
for (const entry of walkSync(`./resources/${alphabet}`)) {
if (!entry.isDirectory) continue
const domain = entry.name
const camelCase = camelize(domain)
if (domain == 'resources') continue
if (domain.match(/[/\\]|\s/)) continue
let read
try {
read = decoder.decode(await Deno.readFile(`./resources/${alphabet}/${domain}/data.json5`))
} catch {
continue
}
let obj = JSON5.parse(read) as ISticker
let newObj = {} as IStickerOutPut
newObj.domain = domain
obj.name ? newObj.name = obj.name : newObj.name = domain
if (obj.bgColor) newObj.bgColor = obj.bgColor
if (obj.fontColor) newObj.fontColor = obj.fontColor
newObj.type = obj.type
if (!obj.favicon) {
if (!cache || !cache[domain]) {
console.log('no cache:' + domain)
const url = `https://f.0px.io/get/${domain}`
const promise = await fetch(url)
let json
try {
json = await promise.json()
} catch {
continue
}
if (!json.success) continue
let favicon: string = ''
const type = json.type
let assets
if (type == 'mastodon') assets = 'md'
if (type == 'pleroma') assets = 'pl'
if (type == 'misskey') assets = 'mi'
if (type == 'misskeyv11') assets = 'ml'
if (type == 'pixelfed') assets = 'pf'
if (!json.isDefault) favicon = `https://f.0px.io/c/${btoa(json.url.replace('https://', ''))}`
if (json.isDefault) favicon = `https://s.0px.io/a/${assets}`
let rawFavicon = favicon
newObj.withoutCDN = rawFavicon
if (!json.isDefault) rawFavicon = json.url
newObj.isDefault = false
if (json.isDefault && !json.bgColor && !json.fontColor) newObj.isDefault = true
newObj.favicon = favicon
writeCache[domain] = favicon
} else {
newObj.withoutCDN = cache[domain]
if(obj.favicon) newObj.favicon = obj.favicon
newObj.isDefault = false
if(!obj.favicon) {
if(~cache[domain].indexOf('https://s.0px.io/a/')) {
newObj.isDefault = true
newObj.favicon = cache[domain]
} else [
newObj.favicon = `https://f.0px.io/c/${btoa(cache[domain].replace('https://', ''))}`
]
}
writeCache[domain] = cache[domain]
}
} else {
//どこかに画像を置いてもらうことになるよな…
newObj.favicon = `https://f.0px.io/c/${btoa(obj.favicon.replace('https://', ''))}`
newObj.withoutCDN = obj.favicon
}
write.push(newObj)
}
}
ensureDirSync('./output')
const output = {
data: write,
updated: new Date().toString(),
default: def,
}
writeJsonSync('./output/data.json', output)
writeJsonSync('./output/cache.json', writeCache)
}
function camelize(str: string) {
let arr = str.split('.')
let output = ''
for (let i = 0; i < arr.length; i++) {
let target = arr[i]
if (i > 0) output = output + target.substr(0, 1).toUpperCase() + target.substr(1)
if (i === 0) output = target
}
return output
}