musescore-downloader/src/scoreinfo.ts

82 lines
2.1 KiB
TypeScript
Raw Normal View History

2020-11-24 07:29:37 +00:00
export abstract class ScoreInfo {
2020-11-24 09:03:06 +00:00
private readonly IPNS_KEY = 'QmSdXtvzC8v8iTTZuj5cVmiugnzbR1QATYRcGix4bBsioP';
private readonly RADIX = 20;
2020-11-24 07:29:37 +00:00
abstract id: number;
abstract title: string;
2020-05-18 22:44:45 +00:00
public store = new Map<symbol, any>();
2020-11-24 07:29:37 +00:00
get idLastDigit (): number {
2020-11-24 09:03:06 +00:00
return (+this.id) % this.RADIX
2020-11-24 07:29:37 +00:00
}
get fileName (): string {
return this.title.replace(/[\s<>:{}"/\\|?*~.\0\cA-\cZ]+/g, '_')
}
get msczIpfsRef (): string {
2020-11-24 09:03:06 +00:00
return `/ipns/${this.IPNS_KEY}/${this.idLastDigit}/${this.id}.mscz`
2020-11-24 07:29:37 +00:00
}
get msczCidUrl (): string {
return `https://ipfs.infura.io:5001/api/v0/block/stat?arg=${this.msczIpfsRef}`
}
2020-11-24 09:03:06 +00:00
getMsczUrl (cidRes: { Key: string; Message: string }): string {
2020-11-24 09:03:06 +00:00
const cid = cidRes.Key
if (!cid) {
// read further error msg
const err = cidRes.Message
if (err.includes('no link named')) { // file not found
throw new Error('score not in dataset')
} else {
throw new Error(err)
}
}
2020-11-24 09:03:06 +00:00
return `https://ipfs.infura.io/ipfs/${cid}`
}
2020-11-24 07:29:37 +00:00
}
export class ScoreInfoInPage extends ScoreInfo {
constructor (private document: Document) { super() }
get id (): number {
const el = this.document.querySelector("meta[property='al:ios:url']") as HTMLMetaElement
const m = el.content.match(/(\d+)$/) as RegExpMatchArray
return +m[1]
2020-11-24 07:29:37 +00:00
}
2020-05-18 22:44:45 +00:00
2020-11-24 07:29:37 +00:00
get title (): string {
const el = this.document.querySelector("meta[property='og:title']") as HTMLMetaElement
return el.content
2020-11-24 07:29:37 +00:00
}
2020-11-24 08:17:50 +00:00
}
export abstract class SheetInfo {
abstract pageCount: number;
abstract thumbnailUrl: string;
get imgType (): 'svg' | 'png' {
const thumbnail = this.thumbnailUrl
const imgtype = thumbnail.match(/\.(\w+)$/)![1]
return imgtype as 'svg' | 'png'
}
}
export class SheetInfoInPage extends SheetInfo {
constructor (private document: Document) { super() }
2020-05-18 22:44:45 +00:00
2020-11-24 07:29:37 +00:00
get pageCount (): number {
return this.document.querySelectorAll('.gXB83').length
}
2020-05-18 22:44:45 +00:00
2020-11-24 07:29:37 +00:00
get thumbnailUrl (): string {
// url to the image of the first page
const el = this.document.querySelector('link[as=image]') as HTMLLinkElement
const url = el.href
return url.split('@')[0]
2020-11-24 07:29:37 +00:00
}
2020-05-18 22:44:45 +00:00
}