-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
56 lines (48 loc) · 1.55 KB
/
content.js
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
const {
trackGarbageRegex,
artistGarbageRegex,
titleGarbageRegex,
dateGarbageRegex,
trackRegex,
artistRegex,
titleRegex,
dateRegex
} = require('./lib/constants');
function isEmpty(object = {}) {
return Object.keys(object).length !== 0;
}
function dumpsterDive(garbage, takeRegex, tossRegex, replace = '') {
const trash = garbage.match(takeRegex) || [];
let finds = '';
if(trash.length > 0){
finds = trash[0].replace(tossRegex, replace);
}
return finds;
}
function findAlbum(garbage) {
const artist = dumpsterDive(garbage, artistRegex, artistGarbageRegex);
const title = dumpsterDive(garbage, titleRegex, titleGarbageRegex);
const date = dumpsterDive(garbage, dateRegex, dateGarbageRegex);
const cover = document.getElementById('tralbumArt').firstElementChild.getAttribute('href');
const parsedTracks = dumpsterDive(garbage, trackRegex, trackGarbageRegex, '\"trackinfo\":[').replace('\}\]', '}]}').replace(/\\\\/, '');
if (parsedTracks) {
const tracks = JSON.parse(`{${parsedTracks}`).trackinfo;
return {
artist,
title,
folder: `${artist} - ${title}`,
tracks: tracks.filter(({ file }) => Boolean(file) && Boolean(file['mp3-128'])),
cover,
date: new Date(date).getUTCFullYear()
};
}
return {};
}
const isAlbumValid = ({ artist, title, tracks }) => isEmpty(artist) && isEmpty(tracks);
function runContent() {
const album = findAlbum(document.documentElement.innerHTML.replaceAll('"', '"'));
if (isAlbumValid(album)) {
browser.runtime.sendMessage(album);
}
}
runContent();