-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlister.ts
213 lines (179 loc) · 6.7 KB
/
lister.ts
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import path from "path";
import fs from "fs";
import type { ScriptInfo, SupportedVideoTypes } from "./types";
const generateYoutubeListing = () => {
type ListType = {
id: ScriptInfo["source"]["id"];
title: string;
};
type ListTypeList = Array<ListType>;
const directory = path.join(__dirname, "transcripts");
const files = fs.readdirSync(directory);
const listing: Partial<Record<SupportedVideoTypes, ListTypeList>> = {};
const recentlyAdded: ListTypeList = [];
function toSortedByProperty<T>(arr: T[], key: keyof T): T[]{
// @ts-expect-error: VSCode doesn't know about Array.toSorted
return arr.toSorted((left, right) => {
if(left[key] < right[key]){
return -1;
}
if(left[key] > right[key]){
return 1;
}
return 0;
});
}
const generateTitle = ({type, title, creator, seriesTitle, season, episode}: ScriptInfo["metadata"]) => {
switch(type){
case "television episode": {
if(seriesTitle && !isNaN(+(season ?? NaN)) && !isNaN(+(episode ?? NaN))){
return `${seriesTitle} S${season}E${episode}: ${title}`
}
}
case "other": {
if(creator){
return `[${creator}] ${title}`;
}
// Explicit fall-through
}
case "movie": {
// Explicit fall-through
}
case "music video": {
// Explicit fall-through
}
default: {
return title;
}
}
}
const cutOffPoint = new Date().valueOf() - (1000 * 60 * 60 * 24 * 7); // 7 days ago
files.forEach((f) => {
const stats = fs.statSync(path.join(directory, f));
if(stats.isDirectory()){
return;
}
const {source, metadata}: ScriptInfo = JSON.parse(fs.readFileSync(path.join(directory, f)).toString());
if(metadata.draft || metadata.requiresExtension){
return;
}
const metadataBundle = {
id: source.id,
title: generateTitle(metadata)
};
listing[metadata.type] ??= [];
listing[metadata.type]?.push(metadataBundle);
if(stats.birthtimeMs > cutOffPoint){
recentlyAdded.push(metadataBundle);
}
});
const title = "Description Listing";
const displayType: Record<SupportedVideoTypes, string> = {
"movie": "Movie",
"music video": "Music Video",
"other": "Other",
"television episode": "Television Episode"
};
const printListItems = (list: ListTypeList) => list.map(({id, title}) => {
return `<li><a href="./youtube_embed.html?id=${id}">${title}</a></li>`;
}).join("\n\t\t\t");
const html = `
<!doctype html>
<html>
<head>
<title>${title}</title>
</head>
<body>
<h1>${title}</h1>
<h2>Recently Added</h2>
<ul>
${printListItems(recentlyAdded)}
</ul>
${Object.entries(listing).map(([type, scripts]) => {
return `
<h2>${displayType[type as SupportedVideoTypes]}</h2>
<ul>
${printListItems(toSortedByProperty<ListType>(scripts, "title"))}
</ul>`;
}).join("\n\n")}
</body>
</html>
`;
fs.writeFileSync("./public/listing.html", html);
}
generateYoutubeListing();
/*** CRUNCHYROLL ***/
const generateCrunchyrollListing = () => {
type Listing = {
url: string;
episode: number;
title: string;
}
const directory = path.join(__dirname, "transcripts", "crunchyroll");
const files = fs.readdirSync(directory);
const show = new Map<string, Listing[]>();
files.forEach((f) => {
const {source, metadata}: ScriptInfo = JSON.parse(fs.readFileSync(path.join(directory, f)).toString());
const {seriesTitle, episode, title, draft} = metadata;
if(draft || !seriesTitle){
return;
}
const showList: Listing[] = show.get(seriesTitle) ?? [];
showList.push({
url: source.url,
episode: Number(episode),
title
});
show.set(seriesTitle, showList);
});
const entries = Array.from(show.entries());
entries.sort((a, b) => {
if(a[0] > b[0]){
return 1;
}
if(a[0] < b[0]){
return -1;
}
return 0;
});
const title = "Described Videos on Crunchyroll";
const html = `
<!doctype html>
<html>
<head>
<title>${title}</title>
</head>
<body>
<h1>${title}</h1>
<p>
The Screen Reader Description project includes descriptions for videos streaming on various sites. While some sites, like youtube, can be hosted on this website, sites like Crunchyroll can't.
While the project maintains descriptions for several shows on Crunchyroll, you will have to download the project's <a href="https://chromewebstore.google.com/detail/screen-reader-description/mheldpckofmhbfadbafiohnpgfphopjk">Chrome Extension</a> in order to watch the shows with descriptions.
</p>
<p>
Once you install the <a href="https://chromewebstore.google.com/detail/screen-reader-description/mheldpckofmhbfadbafiohnpgfphopjk">Chrome Extension</a>, you can visit any of the links below. As long as the extension is installed and you are running a screen reader, the description should play immediately.
</p>
<p>
Not all shows have been fully described. If you are interested in more episodes, or for more shows, please reach out on <a href="https://github.com/julianna-langston/ScreenReaderDescription">GitHub</a>.
</p>
${entries.map(([seriesTitle, episodes]) => {
episodes.sort((a, b) => {
if(a.episode > b.episode){
return 1;
}
if(a.episode < b.episode){
return -1;
}
return 0;
});
return `
<h2>${seriesTitle}</h2>
<ol>
${episodes.map(({episode, title, url}) => `<li value="${episode}"><a href="${url}">${title}</a></li>`).join("\n")}
</ol>
`;
}).join("")}
</body>
</html>`;
fs.writeFileSync("./public/crunchyroll.html", html);
}
generateCrunchyrollListing();