Commit f94edb4d authored by nanahira's avatar nanahira

convert chars to full size

parent ed9b1707
Pipeline #893 canceled with stages
in 22 seconds
...@@ -4,6 +4,15 @@ import axios from "axios"; ...@@ -4,6 +4,15 @@ import axios from "axios";
import _ from "underscore"; import _ from "underscore";
import Base from "./base"; import Base from "./base";
function convertCharToFullSize(char: string) {
const charCode = char.charCodeAt(0);
if (charCode !== 32 && charCode < 127) {
return String.fromCharCode(charCode + 65248);
}
return char;
}
export class CNFetcher extends Base { export class CNFetcher extends Base {
private async fetchPage(url: string): Promise<string> { private async fetchPage(url: string): Promise<string> {
this.log.debug(`Downloading content from ${url} .`); this.log.debug(`Downloading content from ${url} .`);
...@@ -20,9 +29,9 @@ export class CNFetcher extends Base { ...@@ -20,9 +29,9 @@ export class CNFetcher extends Base {
return []; return [];
} }
const allCardNames = allStrings.map(m => m.match(/<font color="Silver">\u203b(.*)<\/font><br \/>/)[1]); const allCardNames = allStrings.map(m => m.match(/<font color="Silver">\u203b(.*)<\/font><br \/>/)[1]);
const uniueCardNames = _.uniq(allCardNames); const uniqueCardNames = _.uniq(allCardNames).map(m => Array.from(m).map(convertCharToFullSize).join(""));
this.log.debug(`${uniueCardNames.length} cards found from ${url} .`); this.log.debug(`${uniqueCardNames.length} cards found from ${url} .`);
return uniueCardNames; return uniqueCardNames;
} }
async fetchPosts(): Promise<string[]> { async fetchPosts(): Promise<string[]> {
let posts: string[] = []; let posts: string[] = [];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment