-
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add epg worker with new ipc commands
- Loading branch information
Showing
5 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
/app-builds | ||
/release | ||
api.js | ||
epg-worker.js | ||
main.js | ||
src/**/*.js | ||
!src/karma.conf.js | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Hidden EPG worker</title> | ||
</head> | ||
<body> | ||
<script> | ||
require('./epg-worker.js'); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
const electron = require('electron'); | ||
const ipcRenderer = electron.ipcRenderer; | ||
const zlib = require('zlib'); | ||
const parser = require('epg-parser'); | ||
const axios = require('axios'); | ||
import { EpgChannel } from './src/app/player/models/epg-channel.model'; | ||
import { EpgProgram } from './src/app/player/models/epg-program.model'; | ||
import { | ||
EPG_ERROR, | ||
EPG_FETCH, | ||
EPG_FETCH_DONE, | ||
EPG_GET_PROGRAM, | ||
EPG_GET_PROGRAM_DONE, | ||
} from './src/app/shared/ipc-commands'; | ||
|
||
// EPG data store | ||
let EPG_DATA: { channels: EpgChannel[]; programs: EpgProgram[] }; | ||
const loggerLabel = '[EPG Worker]'; | ||
|
||
/** | ||
* Fetches the epg data from the given url | ||
* @param epgUrl url of the epg file | ||
*/ | ||
const fetchEpgDataFromUrl = (epgUrl: string) => { | ||
try { | ||
let axiosConfig = {}; | ||
if (epgUrl.endsWith('.gz')) { | ||
axiosConfig = { | ||
responseType: 'arraybuffer', | ||
}; | ||
} | ||
axios | ||
.get(epgUrl.trim(), axiosConfig) | ||
.then((response) => { | ||
console.log(loggerLabel, 'url content was fetched...'); | ||
const { data } = response; | ||
if (epgUrl.endsWith('.gz')) { | ||
console.log(loggerLabel, 'start unzipping...'); | ||
zlib.gunzip(data, (_err, output) => { | ||
parseAndSetEpg(output); | ||
}); | ||
} else { | ||
parseAndSetEpg(data); | ||
} | ||
}) | ||
.catch((err) => { | ||
console.log(loggerLabel, err); | ||
ipcRenderer.send(EPG_ERROR); | ||
}); | ||
} catch (error) { | ||
console.log(loggerLabel, error); | ||
ipcRenderer.send(EPG_ERROR); | ||
} | ||
}; | ||
|
||
/** | ||
* Parses and sets the epg data | ||
* @param xmlString xml file content from the fetched url as string | ||
*/ | ||
const parseAndSetEpg = (xmlString) => { | ||
console.log(loggerLabel, 'start parsing...'); | ||
EPG_DATA = parser.parse(xmlString.toString()); | ||
ipcRenderer.send(EPG_FETCH_DONE); | ||
console.log(loggerLabel, 'done, parsing was finished...'); | ||
}; | ||
|
||
// fetches epg data from the provided URL | ||
ipcRenderer.on(EPG_FETCH, (event, arg) => { | ||
console.log(loggerLabel, 'epg fetch command was triggered'); | ||
fetchEpgDataFromUrl(arg); | ||
}); | ||
|
||
// returns the epg data for the provided channel name and date | ||
ipcRenderer.on(EPG_GET_PROGRAM, (event, args) => { | ||
if (!EPG_DATA || !EPG_DATA.channels) return; | ||
const foundChannel = EPG_DATA?.channels?.find((epgChannel) => { | ||
if ( | ||
epgChannel.name.find((nameObj) => { | ||
if (nameObj.value.trim() === args.channelName.trim()) | ||
return nameObj; | ||
}) | ||
) { | ||
return epgChannel; | ||
} | ||
}); | ||
|
||
if (foundChannel) { | ||
const programs = EPG_DATA?.programs?.filter( | ||
(ch) => ch.channel === foundChannel.id | ||
); | ||
ipcRenderer.send(EPG_GET_PROGRAM_DONE, { | ||
payload: { channel: foundChannel, items: programs }, | ||
}); | ||
} else { | ||
ipcRenderer.send(EPG_GET_PROGRAM_DONE, { | ||
payload: { channel: {}, items: [] }, | ||
}); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export const EPG_FETCH = 'EPG:FETCH'; | ||
export const EPG_FETCH_DONE = 'EPG:FETCH_DONE'; | ||
export const EPG_ERROR = 'EPG:ERROR'; | ||
export const EPG_GET_PROGRAM = 'EPG:GET_PROGRAM'; | ||
export const EPG_GET_PROGRAM_DONE = 'EPG:GET_PROGRAM_DONE'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
}, | ||
"files": [ | ||
"api.ts", | ||
"epg-worker.ts", | ||
"main.ts" | ||
], | ||
"exclude": [ | ||
|