Compare commits
No commits in common. "master" and "0.1.0" have entirely different histories.
16
.drone.yml
@ -1,16 +0,0 @@
|
|||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: default
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: install
|
|
||||||
image: node:19.4.0
|
|
||||||
commands:
|
|
||||||
- npm install
|
|
||||||
|
|
||||||
- name: build_with_linux
|
|
||||||
image: node:19.4.0
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get upgrade -y
|
|
||||||
- apt-get install -y libarchive-tools rpm
|
|
||||||
- npm run build-unpacked
|
|
@ -10,10 +10,6 @@ insert_final_newline = true
|
|||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
[**.ts]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[**.json]
|
[**.json]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
@ -54,4 +50,4 @@ trim_trailing_whitespace = ignore
|
|||||||
charset = ignore
|
charset = ignore
|
||||||
|
|
||||||
[{test/fixtures,deps,tools/eslint,tools/gyp,tools/icu,tools/msvs}/**]
|
[{test/fixtures,deps,tools/eslint,tools/gyp,tools/icu,tools/msvs}/**]
|
||||||
insert_final_newline = false
|
insert_final_newline = false
|
16
.eslintrc
@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"root": true,
|
|
||||||
"env": {
|
|
||||||
"node": true,
|
|
||||||
"browser": true
|
|
||||||
},
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
"plugins": [
|
|
||||||
"@typescript-eslint"
|
|
||||||
],
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/eslint-recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended"
|
|
||||||
]
|
|
||||||
}
|
|
50
.github/workflows/build.yml
vendored
@ -1,50 +0,0 @@
|
|||||||
name: Build CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches-ignore:
|
|
||||||
- master
|
|
||||||
- develop
|
|
||||||
pull_request:
|
|
||||||
branches-ignore:
|
|
||||||
- master
|
|
||||||
- develop
|
|
||||||
workflow_dispatch:
|
|
||||||
jobs:
|
|
||||||
build_on_linux:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: update apt
|
|
||||||
run: sudo apt-get update
|
|
||||||
- name: Install libarchive-tools
|
|
||||||
run: sudo apt-get install -y libarchive-tools
|
|
||||||
- uses: actions/checkout@master
|
|
||||||
- uses: actions/setup-node@master
|
|
||||||
with:
|
|
||||||
node-version: 22.4
|
|
||||||
- run: npm install
|
|
||||||
- run: npm run build
|
|
||||||
# - uses: actions/upload-artifact@master
|
|
||||||
# with:
|
|
||||||
# name: linux-builds
|
|
||||||
# path: dist/
|
|
||||||
|
|
||||||
# build_on_mac:
|
|
||||||
# runs-on: macos-latest
|
|
||||||
# steps:
|
|
||||||
# - uses: actions/checkout@master
|
|
||||||
# - uses: actions/setup-node@master
|
|
||||||
# with:
|
|
||||||
# node-version: 22.4
|
|
||||||
# - run: npm install
|
|
||||||
# - run: npm run build
|
|
||||||
|
|
||||||
# build_on_win:
|
|
||||||
# runs-on: windows-latest
|
|
||||||
# steps:
|
|
||||||
# - uses: actions/checkout@master
|
|
||||||
# - uses: actions/setup-node@master
|
|
||||||
# with:
|
|
||||||
# node-version: 22.4
|
|
||||||
# - run: npm install
|
|
||||||
# - run: npm run build
|
|
58
.github/workflows/release.yml
vendored
@ -1,58 +0,0 @@
|
|||||||
name: Release CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- develop
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_on_linux:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: update apt
|
|
||||||
run: sudo apt-get update
|
|
||||||
- name: Install libarchive-tools
|
|
||||||
run: sudo apt-get install -y libarchive-tools
|
|
||||||
- uses: actions/checkout@master
|
|
||||||
- uses: actions/setup-node@master
|
|
||||||
with:
|
|
||||||
node-version: 22.4
|
|
||||||
- run: npm install
|
|
||||||
- run: npm run build
|
|
||||||
- uses: actions/upload-artifact@master
|
|
||||||
with:
|
|
||||||
name: linux-builds
|
|
||||||
path: dist/
|
|
||||||
|
|
||||||
# build_on_mac:
|
|
||||||
# runs-on: macos-latest
|
|
||||||
# steps:
|
|
||||||
# - uses: actions/checkout@master
|
|
||||||
# - uses: actions/setup-node@master
|
|
||||||
# with:
|
|
||||||
# node-version: 22.4
|
|
||||||
# - run: npm install
|
|
||||||
# - run: npm run build
|
|
||||||
# - uses: actions/upload-artifact@master
|
|
||||||
# with:
|
|
||||||
# name: mac-builds
|
|
||||||
# path: ./dist/
|
|
||||||
|
|
||||||
# build_on_win:
|
|
||||||
# runs-on: windows-latest
|
|
||||||
# steps:
|
|
||||||
# - uses: actions/checkout@master
|
|
||||||
# - uses: actions/setup-node@master
|
|
||||||
# with:
|
|
||||||
# node-version: 22.4
|
|
||||||
# - run: npm install
|
|
||||||
# - run: npm run build
|
|
||||||
# - uses: actions/upload-artifact@master
|
|
||||||
# with:
|
|
||||||
# name: windows-builds
|
|
||||||
# path: dist/
|
|
17
.gitignore
vendored
@ -1,19 +1,2 @@
|
|||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
|
|
||||||
# ignore all build files except for the .desktop and PKGBUILD files
|
|
||||||
build/linux/arch/*
|
|
||||||
!build/linux/arch/PKGBUILD
|
|
||||||
!build/linux/arch/.SRCINFO
|
|
||||||
!build/linux/arch/tidal-hifi.desktop
|
|
||||||
!build/linux/arch/install.sh
|
|
||||||
*.css
|
|
||||||
*.css.map
|
|
||||||
|
|
||||||
# JetBrains IDE configuration
|
|
||||||
.idea
|
|
||||||
ts-dist/**
|
|
||||||
ts-dist
|
|
||||||
themes
|
|
||||||
!src/themes
|
|
||||||
.sass-cache
|
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
{
|
|
||||||
"plugins": [
|
|
||||||
"stylelint-prettier"
|
|
||||||
],
|
|
||||||
"extends": [
|
|
||||||
"stylelint-config-standard-scss"
|
|
||||||
],
|
|
||||||
"ignoreFiles": [
|
|
||||||
"src/themes/**.scss"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"prettier/prettier": true,
|
|
||||||
"scss/at-extend-no-missing-placeholder": null,
|
|
||||||
"no-descending-specificity": null
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
POST /settings/skipped-artists HTTP/1.1
|
|
||||||
Host: localhost:47836
|
|
||||||
Content-Type: application/json
|
|
||||||
|
|
||||||
["abc", "def"]
|
|
@ -1,2 +0,0 @@
|
|||||||
POST /settings/skipped-artists/current HTTP/1.1
|
|
||||||
Host: localhost:47836
|
|
@ -1,5 +0,0 @@
|
|||||||
POST /settings/skipped-artists/delete HTTP/1.1
|
|
||||||
Host: localhost:47836
|
|
||||||
Content-Type: application/json
|
|
||||||
|
|
||||||
["abc", "def"]
|
|
@ -1,2 +0,0 @@
|
|||||||
DELETE /settings/skipped-artists/current HTTP/1.1
|
|
||||||
Host: localhost:47836
|
|
26
.vscode/settings.json
vendored
@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"cSpell.words": [
|
|
||||||
"Brainz",
|
|
||||||
"Castlabs",
|
|
||||||
"Fi's",
|
|
||||||
"flac",
|
|
||||||
"Flatpak",
|
|
||||||
"geqnfr",
|
|
||||||
"hifi",
|
|
||||||
"libnotify",
|
|
||||||
"listenbrainz",
|
|
||||||
"playpause",
|
|
||||||
"prs",
|
|
||||||
"rescrobbler",
|
|
||||||
"scrobble",
|
|
||||||
"scrobbling",
|
|
||||||
"trackid",
|
|
||||||
"tracklist",
|
|
||||||
"widevine",
|
|
||||||
"xesam"
|
|
||||||
],
|
|
||||||
"sonarlint.connectedMode.project": {
|
|
||||||
"connectionId": "public-sonarcloud",
|
|
||||||
"projectKey": "Mastermindzh_tidal-hifi"
|
|
||||||
}
|
|
||||||
}
|
|
414
CHANGELOG.md
@ -1,414 +0,0 @@
|
|||||||
# Changelog
|
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
## [5.18.2]
|
|
||||||
|
|
||||||
- Reverted to sass 1.79.4 to fix `Nix` builds
|
|
||||||
- Changed electron-builder.base.yml to now generate the correct .desktop entries again
|
|
||||||
- Should fix flatpak build
|
|
||||||
|
|
||||||
## [5.18.1]
|
|
||||||
|
|
||||||
- Fixed the login bug
|
|
||||||
- Upgraded electron to 35.1.1
|
|
||||||
- Added Widevine/CDM info to startup
|
|
||||||
- delayed remote electron initializer
|
|
||||||
|
|
||||||
## [5.18.0]
|
|
||||||
|
|
||||||
- [Dianoga](https://github.com/Dianoga) fixed the duration selector, restoring mpris & partial API data.
|
|
||||||
- PR: #554
|
|
||||||
- Added `xesam:url` property to mpris metadata fixes [#506](https://github.com/Mastermindzh/tidal-hifi/issues/506)
|
|
||||||
|
|
||||||
## [5.17.0]
|
|
||||||
|
|
||||||
- Added an option to disable the dynamic title and set it to a static one, [#491](https://github.com/Mastermindzh/tidal-hifi/pull/491)
|
|
||||||
- Discord integration now says "Listening to" instead of "playing" [#488](https://github.com/Mastermindzh/tidal-hifi/pull/488) && [#454](https://github.com/Mastermindzh/tidal-hifi/pull/454)
|
|
||||||
- Fixed several element names in the dom scraper
|
|
||||||
- Removed the Songwhip (they shut down) integration and replaced it with TIDAL's universal link system
|
|
||||||
|
|
||||||
## [5.16.0]
|
|
||||||
|
|
||||||
- Fix issue #449 Discord RPC stuck on "Browsing Tidal".
|
|
||||||
- Fix issue #448 Add option to disable the discord rpc idle text
|
|
||||||
- Notifications are now send at the end of the update process, allowing other events to happen sooner.
|
|
||||||
|
|
||||||
## [5.15.0]
|
|
||||||
|
|
||||||
- Added all missing swagger/openApi info with the help of [Times-Z](https://github.com/Times-Z)
|
|
||||||
- Updated most dependency versions
|
|
||||||
- This includes Electron 31!
|
|
||||||
|
|
||||||
- Added a channel selector so we can now use Tidal's staging environment directly from the app
|
|
||||||
- implements [#437](https://github.com/Mastermindzh/tidal-hifi/issues/437)
|
|
||||||
|
|
||||||
## [5.14.1]
|
|
||||||
|
|
||||||
- Fixed `getAlbumName` not finding album name whilst on queue page
|
|
||||||
- Added all mediaInfo to mpris interface using the `custom:` prefix
|
|
||||||
|
|
||||||
## [5.14]
|
|
||||||
|
|
||||||
- Simplified `MediaInfo` & `Options` types
|
|
||||||
- Added `playingFrom` information to the info API
|
|
||||||
- also changed the way we update Album info since Playing From now shows the correct Album.
|
|
||||||
- API now allows you to set the `hostname` so you can control who can interact with the API.
|
|
||||||
- Reworked swagger generation hotfix to properly generate `swagger.json` during the compile step
|
|
||||||
- Might switch to tsoa in the future, idk yet.
|
|
||||||
- Added [Tidal Magazine](https://tidal.com/magazine/) integration (in the menubar or use `Ctrl + M`)
|
|
||||||
|
|
||||||
## [5.13.1]
|
|
||||||
|
|
||||||
- removed Swagger generation step in favor of pre-generated file.
|
|
||||||
- This also fixes the API issue [#409](https://github.com/Mastermindzh/tidal-hifi/issues/409)
|
|
||||||
- This also stops TIDAL-hifi from scanning your entire home directory... the glob was very broad apparently.
|
|
||||||
|
|
||||||
## [5.13.0]
|
|
||||||
|
|
||||||
- Fixed [#403](https://github.com/Mastermindzh/tidal-hifi/issues/403) "cannot read shuffle of undefined" error
|
|
||||||
- Added an API to add & delete entries from the skippedArtists list in the settings. fixes [#405](https://github.com/Mastermindzh/tidal-hifi/issues/405)
|
|
||||||
- `GET /settings/skipped-artists` -> get list of skipped artists
|
|
||||||
- `POST /settings/skipped-artists` -> add to the list of skipped artists
|
|
||||||
- `POST /settings/skipped-artists/delete` -> delete from the list of skipped artists
|
|
||||||
- `POST /settings/skipped-artists/current` -> skip the current artist
|
|
||||||
- `DELETE /settings/skipped-artists/current` -> delete the current artist from the skip list
|
|
||||||
- Added Swagger documentation to the new endpoints:
|
|
||||||

|
|
||||||
- CORS support added by [Mjokfox](https://github.com/Mjokfox)
|
|
||||||
|
|
||||||
## [5.12.0]
|
|
||||||
|
|
||||||
- Added Shuffle and Repeat state to API response - By [ThatGravyBoat](https://github.com/ThatGravyBoat)
|
|
||||||
|
|
||||||
## [5.11.0]
|
|
||||||
|
|
||||||
- Re-implemented the API, added support for duration/current in seconds & shuffle+repeat
|
|
||||||
- made the original API "legacy" (still works the same)
|
|
||||||
- Now using the correct HTTP verb for all new endpoints
|
|
||||||
- Implemented TIDAL's universal links. All links are now universal.
|
|
||||||
- Custom `tidal://` protocol fixed - By [TheRockYT](https://github.com/TheRockYT)
|
|
||||||
- Global media shortcuts removed since TIDAL includes them by default - By [TheRockYT](https://github.com/TheRockYT)
|
|
||||||
|
|
||||||
- Fixes
|
|
||||||
- [#390](https://github.com/Mastermindzh/tidal-hifi/issues/390)
|
|
||||||
- [#376](https://github.com/Mastermindzh/tidal-hifi/issues/376)
|
|
||||||
- [#383](https://github.com/Mastermindzh/tidal-hifi/issues/383)
|
|
||||||
- [#393](https://github.com/Mastermindzh/tidal-hifi/issues/393)
|
|
||||||
|
|
||||||
## [5.10.0]
|
|
||||||
|
|
||||||
- TIDAL will now close the previous notification if a new one is sent whilst the old is still visible. [#364](https://github.com/Mastermindzh/tidal-hifi/pull/364)
|
|
||||||
- Updated developer documentation to get started in README [#365](https://github.com/Mastermindzh/tidal-hifi/pull/365)
|
|
||||||
- Links in the about window now open in the user's default browser. fixes [#360](https://github.com/Mastermindzh/tidal-hifi/issues/360)
|
|
||||||
- Refactored "nowPlaying" code to always display the current state, even when the built-in UI is updated.
|
|
||||||
- fixes [#351](https://github.com/Mastermindzh/tidal-hifi/issues/351)
|
|
||||||
- fixes [#356](https://github.com/Mastermindzh/tidal-hifi/issues/356)
|
|
||||||
- fixes [#370](https://github.com/Mastermindzh/tidal-hifi/issues/370)
|
|
||||||
- Reverted to using old icon syntax with icons in the build directory. fixes [#350](https://github.com/Mastermindzh/tidal-hifi/issues/350)
|
|
||||||
- Enabled wayland platform flags by default when launching through .desktop file
|
|
||||||
- fixes [#273](https://github.com/Mastermindzh/tidal-hifi/issues/273)
|
|
||||||
- fixes [#347](https://github.com/Mastermindzh/tidal-hifi/issues/347)
|
|
||||||
|
|
||||||
## [5.9.0]
|
|
||||||
|
|
||||||
- More Discord options:
|
|
||||||
- Added the ability to hide the current song from the discord activity and display a custom text instead
|
|
||||||
- Added the ability to customize the text that is shown when no song is playing
|
|
||||||
- Discord now reacts to pausing/unpausing events
|
|
||||||
- Refactored media info updates so it only updates the required info, fixes #342, #306
|
|
||||||
- Added 5.9.0 logs/versions/migrations
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
- Fixed chromium mediaSession instance showing up. fixes #338 #198
|
|
||||||
- Set a new icon, should fix #302
|
|
||||||
- Made sure settingsWindow exists before operating on it. fixes #344
|
|
||||||
|
|
||||||
## [5.8.0]
|
|
||||||
|
|
||||||
- Updated Electron to 28.1.1 (fixes [325](https://github.com/Mastermindzh/tidal-hifi/issues/325))
|
|
||||||
- Updated dependencies to latest
|
|
||||||
- added theme files to stylelint ignore
|
|
||||||
- fixed other stylelint errors
|
|
||||||
|
|
||||||
- Added functionality to favorite a song (fixes [#323](https://github.com/Mastermindzh/tidal-hifi/issues/323))
|
|
||||||
- Added a hotkey to favorite ("Add to collection") songs: Control+a
|
|
||||||
- Added the "favorite" field in the `mediaInfo` and the API `/current` endpoint
|
|
||||||
- Added an endpoint to toggle favoriting a song: `http://localhost:47836/favorite/toggle`
|
|
||||||
|
|
||||||
- Fixed wrong "end time stamp" for currently playing song (fixes [#282](https://github.com/Mastermindzh/tidal-hifi/issues/282))
|
|
||||||
- Affected the API + all integrations
|
|
||||||
- As requested we also added toggle to sync the timestamps to Discord (default = true)
|
|
||||||
|
|
||||||
## [5.7.1]
|
|
||||||
|
|
||||||
- Fixed mpris not being set up correctly due to capitalization of the instance name.
|
|
||||||
|
|
||||||
## [5.7.0]
|
|
||||||
|
|
||||||
- Renamed app to TIDAL Hi-Fi.
|
|
||||||
- Made sure all windows run with the same web preferences set (compared to main app).
|
|
||||||
- Fixes the last.fm bug.
|
|
||||||
- Added settings to customize the Discord rich presence information
|
|
||||||
- Discord settings are now also collapsible like the ListenBrainz ones are
|
|
||||||
- Restyled settings menu to include version number and useful links on the about page
|
|
||||||

|
|
||||||
- The ListenBrainz integration has been extended with a configurable (5 seconds by default) delay in song reporting so that it doesn't spam the API when you are cycling through songs.
|
|
||||||
- Custom CSS now also applies to settings window
|
|
||||||

|
|
||||||
|
|
||||||
## [5.6.0]
|
|
||||||
|
|
||||||
- Added support for Wayland (on by default) fixes [#262](https://github.com/Mastermindzh/tidal-hifi/issues/262) and [#157](https://github.com/Mastermindzh/tidal-hifi/issues/157)
|
|
||||||
- Made it clear in the readme that this TIDAL Hi-Fi client supports High & Max audio settings. fixes [#261](https://github.com/Mastermindzh/tidal-hifi/issues/261)
|
|
||||||
- Added app suspension inhibitors when music is playing. fixes [#257](https://github.com/Mastermindzh/tidal-hifi/issues/257)
|
|
||||||
- Fixed bug with theme files from user directory trying to load: "an error occurred reading the theme file"
|
|
||||||
- Fixed: config flags not being set correctly
|
|
||||||
- [DEV]:
|
|
||||||
- Logger is now static and will automatically call either ipcRenderer or ipcMain
|
|
||||||
|
|
||||||
## 5.5.0
|
|
||||||
|
|
||||||
- ListenBrainz integration added (thanks @Mar0xy)
|
|
||||||
|
|
||||||
## 5.4.0
|
|
||||||
|
|
||||||
- Removed Windows builds (from publishes) as they don't work anymore.
|
|
||||||
- Added [Songwhip](https://songwhip.com/) integration
|
|
||||||
- Fixed bug with several hotkeys not working due to Tidal's HTML/css changes
|
|
||||||
- [DEV]:
|
|
||||||
- added a logger to log into STDout
|
|
||||||
- added "watchStart" which will automatically restart electron when it detects a source code change
|
|
||||||
- added "listen.tidal.com-parsing-scripts" folder with a script to verify whether all elements (in the main preload.ts) are present on the page
|
|
||||||
|
|
||||||
## 5.3.0
|
|
||||||
|
|
||||||
- SPKChaosPhoenix updated the beautiful Tokyo Night theme:
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## 5.2.0
|
|
||||||
|
|
||||||
- moved from Javascript to Typescript for all files
|
|
||||||
|
|
||||||
- use `npm run watch` to watch for changes & recompile typescript and sass files
|
|
||||||
|
|
||||||
- Added support for theming the application
|
|
||||||
- Added drone build file use `drone exec` or drone.ci to build it
|
|
||||||
|
|
||||||
## 5.1.0
|
|
||||||
|
|
||||||
### New features
|
|
||||||
|
|
||||||
- Added proper updates through the MediaSession API
|
|
||||||
- You can now add custom CSS in the "advanced" settings tab
|
|
||||||
- You can now configure the updateFrequency in the settings window
|
|
||||||
- Default value is set to 500 and will overwrite the hardcoded value of 100
|
|
||||||
|
|
||||||
### Fixes
|
|
||||||
|
|
||||||
- Any songs **including** an artist listed in the `skipped artists` setting will now be skipped even if the song is a collaboration.
|
|
||||||
- Linux desktop icons have been fixed. See [#222](https://github.com/Mastermindzh/tidal-hifi/pull/222) for details.
|
|
||||||
|
|
||||||
## 5.0.0
|
|
||||||
|
|
||||||
- Replaced "muting artists" with a full implementation of an Adblock mechanism
|
|
||||||
|
|
||||||
> Disabled audio & visual ads, unlocked lyrics, suggested track, track info, unlimited skips thanks to uBlockOrigin custom filters ([source](https://github.com/uBlockOrigin/uAssets/issues/17495))
|
|
||||||
|
|
||||||
- @thanasistrisp updated Electron to 24.1.2 and fixed the tray bug :)
|
|
||||||
|
|
||||||
## 4.4.0
|
|
||||||
|
|
||||||
- Updated shortcut hint on the menubar to reflect the new `ctrl+=` shortcut.
|
|
||||||
- Reverted icon path to `icon.png` instead of the hardcoded linux path.
|
|
||||||
- Add support to autoHide the menubar and showing it with the `alt` key.
|
|
||||||
- Move the quit command from the system sub-menu to the main menu
|
|
||||||
- Added single click focus/show on the tray icon
|
|
||||||
- Doesn't work on all platforms. Nothing I can do about that unfortunately!
|
|
||||||
- Added a list of artists to automatically skip.
|
|
||||||
- I don't like the vast majority of dutch music so I added one of them to my list to test: [./docs/no-dutch-music.mp4](./docs/no-dutch-music.mp4)
|
|
||||||
|
|
||||||
## 4.3.1
|
|
||||||
|
|
||||||
- fix: App always requests a default-url-handler-scheme change on start
|
|
||||||
|
|
||||||
## 4.3.0
|
|
||||||
|
|
||||||
- Added a setting to disable background throttling ([docs](https://www.electronjs.org/docs/latest/api/browser-window))
|
|
||||||
|
|
||||||
## 4.2.0
|
|
||||||
|
|
||||||
- New settings window by BlueManCZ
|
|
||||||
- Fixed the desktop files in electron-builder
|
|
||||||
- icon is set to new static path based on Arch/Debian
|
|
||||||
- Name has changed to TIDAL Hi-Fi
|
|
||||||
|
|
||||||
## 4.1.2
|
|
||||||
|
|
||||||
- Changed the category of the desktop file to AudioVideo
|
|
||||||
- Changed desktop file name to "TIDAL Hi-Fi"
|
|
||||||
|
|
||||||
## 4.1.1
|
|
||||||
|
|
||||||
- Fixed `cannot read property of undefined` error because of not passing mainWindow around.
|
|
||||||
- vincens2005, fixed inconsistent auto muting
|
|
||||||
|
|
||||||
## 4.1.0
|
|
||||||
|
|
||||||
- Added `tidal://` protocol support
|
|
||||||
- Switched icon strategies to fix bugs with icons
|
|
||||||
- Fixed tray icon bugs
|
|
||||||
- Menu now shows in KDE as well
|
|
||||||
- Toggle window is supported from tray icon
|
|
||||||
- regular click is still ignored, see [this issue](https://github.com/electron/electron/issues/6773)
|
|
||||||
- Fixed about tab not showing
|
|
||||||
- Fixed playback, mpris and API issues
|
|
||||||
|
|
||||||
## 4.0.1
|
|
||||||
|
|
||||||
- Updated build config to make use of a base file that doesn't build anything.
|
|
||||||
- This fixes the issue of unwanted extra build targets that were introduced with the electron-builder update
|
|
||||||
|
|
||||||
## 4.0.0
|
|
||||||
|
|
||||||
- Updated to Electron 19.0.5
|
|
||||||
|
|
||||||
## 3.1.1
|
|
||||||
|
|
||||||
- Media update timeout set to 500 instead of 200
|
|
||||||
- Updated property name for duration because of a tidal update
|
|
||||||
- flag for "disable hardware media keys" now working again
|
|
||||||
|
|
||||||
## 3.1.0
|
|
||||||
|
|
||||||
- Added a separate advanced options settings panel with flags
|
|
||||||
- Added gpu-rasterization flag
|
|
||||||
- config setting `disableHardwareMediaKeys` moved to `flags.disableHardwareMediaKeys`, it will be migrated automatically
|
|
||||||
|
|
||||||
## 3.0.0
|
|
||||||
|
|
||||||
- Updated to Electron 15
|
|
||||||
- Fixed the develop "build-unpacked" command
|
|
||||||
- Added setting to disable multiple TIDAL Hi-Fi windows (defaults to true)
|
|
||||||
- Added setting to disable HardwareMediaKeyHandling (defaults to false)
|
|
||||||
|
|
||||||
## 2.8.2
|
|
||||||
|
|
||||||
- Updated dependencies
|
|
||||||
- Downgraded packaged version of electron to 8.5.2, doesn't seem to like a newer build
|
|
||||||
- Fixed the annoying (and useless) terminal warning about `allowRendererProcessReuse`
|
|
||||||
|
|
||||||
## 2.8.1
|
|
||||||
|
|
||||||
- Mar0xy fixed some build issues (thanks!)
|
|
||||||
- vincens2005 fixed the quit button in the menubar
|
|
||||||
|
|
||||||
## 2.8.0
|
|
||||||
|
|
||||||
- Added the ability to mute artists automatically
|
|
||||||
- Added better error handling for discord rpc
|
|
||||||
|
|
||||||
## 2.7.2
|
|
||||||
|
|
||||||
- Disabled sandboxing to fix a display compositor issue on Linux.
|
|
||||||
|
|
||||||
## 2.7.1
|
|
||||||
|
|
||||||
- Fixed bug: Triggering full screen from the Tidal web app would cause the menubar to be visible even if it was disabled in the settings
|
|
||||||
|
|
||||||
## 2.7.0
|
|
||||||
|
|
||||||
- Switched to the native Notifier (removed node-notifier)
|
|
||||||
- Album art now also has a name, based on [best effort](https://github.com/Mastermindzh/tidal-hifi/pull/88#pullrequestreview-840814847)
|
|
||||||
|
|
||||||
## 2.6.0
|
|
||||||
|
|
||||||
- Add album images to media info and discord
|
|
||||||
|
|
||||||
## 2.5.0
|
|
||||||
|
|
||||||
- Notify-send now correctly shows "Tidal Hi-Fi" as the program name
|
|
||||||
- Updated dependencies (including electron itself)
|
|
||||||
|
|
||||||
### known issues
|
|
||||||
|
|
||||||
- Requires older version of nodejs due to electron-builder (use lts/gallium)
|
|
||||||
|
|
||||||
### builds
|
|
||||||
|
|
||||||
updated to nodejs 16 in actions
|
|
||||||
|
|
||||||
## 2.4.0
|
|
||||||
|
|
||||||
- Added more MPRIS settings
|
|
||||||
- Added instruction for rescrobbler to get last.fm working without sandbox mode
|
|
||||||
|
|
||||||
## 2.3.0
|
|
||||||
|
|
||||||
- Added a setting to minimize to tray on app close (off by default)
|
|
||||||
- Added the main menu to the tray icon
|
|
||||||
|
|
||||||
## 2.2.1
|
|
||||||
|
|
||||||
- artists is now gotten specifically from the footer. This fixes the [unknown artists bug](https://github.com/Mastermindzh/tidal-hifi/issues/45).
|
|
||||||
- the discord module will check whether the artists is empty and if so substitute it with a default message. This is to prevent sending an empty state to Discord (which it doesn't support). fixes [#45](https://github.com/Mastermindzh/tidal-hifi/issues/54)
|
|
||||||
|
|
||||||
### removed arch build details from source control
|
|
||||||
|
|
||||||
moved to: [https://github.com/Mastermindzh/tidal-hifi-aur](https://github.com/Mastermindzh/tidal-hifi-aur)
|
|
||||||
|
|
||||||
## 2.2.0
|
|
||||||
|
|
||||||
- The discord integration now adds a time remaining field based on the song duration
|
|
||||||
- All fields (current, remaining, and url are also available in the API\*)
|
|
||||||
- the artist field is now correctly identified
|
|
||||||
|
|
||||||
\* current time only updates on play/pause.
|
|
||||||
|
|
||||||
## 2.1.1
|
|
||||||
|
|
||||||
- The discord integration now doesn't send an update every 15 seconds it sends an update whenever the media info changes
|
|
||||||
- consolidated updating the media info changes with the status changes into a single global event
|
|
||||||
|
|
||||||
## 2.1.0
|
|
||||||
|
|
||||||
- [Mar0xy](https://github.com/Mar0xy) added Discord integration.
|
|
||||||
- Several versions have been bumped to fix vulnerabilities
|
|
||||||
|
|
||||||
## 2.0.0
|
|
||||||
|
|
||||||
### Breaking changes
|
|
||||||
|
|
||||||
- Changed settings hotkey from "ctrl+/" to "ctrl+=" to avoid a conflict with the default Tidal hotkeys
|
|
||||||
|
|
||||||
## Other changes
|
|
||||||
|
|
||||||
- Added a setting to disable custom hotkeys
|
|
||||||
- Fixed the bug that the previous song hotkey would register 3 times. (Twice due to a duplicate block of code + once from the default tidal hotkey)
|
|
||||||
|
|
||||||
## 1.3.0
|
|
||||||
|
|
||||||
-- re-enabled MPRIS-service wit the electron downloader fixes
|
|
||||||
|
|
||||||
## 1.2.0
|
|
||||||
|
|
||||||
- Added the ability to disable the tray icon
|
|
||||||
|
|
||||||
## 1.1.1
|
|
||||||
|
|
||||||
Bugfixes:
|
|
||||||
|
|
||||||
- Arch AUR install failed before, it is fixed now by using the included build scripts
|
|
||||||
|
|
||||||
## 1.1.0
|
|
||||||
|
|
||||||
- updated to electron 8.0.0
|
|
||||||
- Added a beta-version of the MPRIS service
|
|
||||||
|
|
||||||
- Bugfixes:
|
|
||||||
- icon on gnome not showing in launcher
|
|
||||||
- app not remembering size on startup
|
|
181
README.md
@ -1,180 +1,59 @@
|
|||||||
# TIDAL Hi-Fi (Max quality)<img src = "./build/icon.png" height="40" align="right"/>
|
<img src = "./build/icon.png" height="50" style="float:right; margin-top: 29px;" />
|
||||||
|
# Tidal-hifi
|
||||||
|
|
||||||
 [](https://github.com/Mastermindzh/tidal-hifi/actions) [](https://ci.mastermindzh.tech/Mastermindzh/tidal-hifi) [](https://discord.gg/yhNwf4v4He)
|
The web version of [listen.tidal.com](listen.tidal.com) running in electron with hifi support thanks to widevine.
|
||||||
|
|
||||||
The web version of [listen.tidal.com](https://listen.tidal.com) running in electron with Hi-Fi (High & Max) support thanks to widevine.
|

|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## Table of Contents
|
|
||||||
|
|
||||||
<!-- toc -->
|
<!-- toc -->
|
||||||
|
|
||||||
- [TIDAL Hi-Fi (Max quality)](#tidal-hi-fi-max-quality)
|
- [Installation](#installation)
|
||||||
- [Table of Contents](#table-of-contents)
|
- [Using releases](#using-releases)
|
||||||
- [Features](#features)
|
- [Using source](#using-source)
|
||||||
- [Contributions](#contributions)
|
- [Why](#why)
|
||||||
- [Why did I create TIDAL Hi-Fi?](#why-did-i-create-tidal-hi-fi)
|
- [Integrations](#integrations)
|
||||||
- [Why not extend existing projects?](#why-not-extend-existing-projects)
|
- [Why not extend existing projects?](#why-not-extend-existing-projects)
|
||||||
- [Installation](#installation)
|
- [Special thanks to..](#special-thanks-to)
|
||||||
- [Dependencies](#dependencies)
|
|
||||||
- [Using releases](#using-releases)
|
|
||||||
- [Snap](#snap)
|
|
||||||
- [Arch Linux](#arch-linux)
|
|
||||||
- [Flatpak](#flatpak)
|
|
||||||
- [Nix](#nix)
|
|
||||||
- [Using source](#using-source)
|
|
||||||
- [Integrations](#integrations)
|
|
||||||
- [Known bugs](#known-bugs)
|
|
||||||
- [DRM not working on Windows (error S6007)](#drm-not-working-on-windows-error-s6007)
|
|
||||||
- [Special thanks to](#special-thanks-to)
|
|
||||||
- [Donations](#donations)
|
|
||||||
- [Images](#images)
|
|
||||||
- [Settings window](#settings-window)
|
|
||||||
- [User setups](#user-setups)
|
|
||||||
|
|
||||||
<!-- tocstop -->
|
<!-- tocstop -->
|
||||||
|
|
||||||
## Features
|
|
||||||
|
|
||||||
- HiFi playback (High & Max settings)
|
|
||||||
- Notifications
|
|
||||||
- Custom [theming](./docs/theming.md)
|
|
||||||
- Custom hotkeys ([source](https://defkey.com/tidal-desktop-shortcuts))
|
|
||||||
- Better icons thanks to [Papirus-icon-theme](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/)
|
|
||||||
- [Settings feature](./docs/images/settings.png) to disable certain functionality. (`ctrl+=` or `ctrl+0`)
|
|
||||||
- API for status, playback and settings (see the [/docs](http://localhost:47836/docs/) route)
|
|
||||||
- Disabled audio & visual ads, unlocked lyrics, suggested track, track info, and unlimited skips thanks to uBlockOrigin custom filters ([source](https://github.com/uBlockOrigin/uAssets/issues/17495))
|
|
||||||
- AlbumArt in integrations ([best-effort](https://github.com/Mastermindzh/tidal-hifi/pull/88#pullrequestreview-840814847))
|
|
||||||
- Custom [integrations](#integrations)
|
|
||||||
- [ListenBrainz](https://listenbrainz.org/?redirect=false) integration
|
|
||||||
- Discord RPC integration (showing "now listening", "Browsing", etc)
|
|
||||||
- Flatpak version only works if both Discord and Tidal-HiFi are flatpaks
|
|
||||||
- MPRIS integration
|
|
||||||
- UI + Json config (`~/.config/tidal-hifi/`, or `~/.var/app/com.mastermindzh.tidal-hifi/` for Flatpak)
|
|
||||||
|
|
||||||
## Contributions
|
|
||||||
|
|
||||||
To contribute you can use the standard GitHub features (issues, prs, etc.) or join the discord server to talk with like-minded individuals.
|
|
||||||
|
|
||||||
-  [Join the Discord server](https://discord.gg/yhNwf4v4He)
|
|
||||||
|
|
||||||
## Why did I create TIDAL Hi-Fi?
|
|
||||||
|
|
||||||
I moved from Spotify over to Tidal and found Linux support to be lacking.
|
|
||||||
When I started this project there weren't any Linux apps that offered Tidal's "hifi" options nor any scripts to control it.
|
|
||||||
I made this app to support the highest quality audio available on the Linux platform. It used to be "hifi" but now is ["High & Max"](https://tidal.com/sound-quality).
|
|
||||||
|
|
||||||
### Why not extend existing projects?
|
|
||||||
|
|
||||||
Whilst there are a handful of projects attempting to run Tidal on Electron they are all unappealing to me because of various reasons:
|
|
||||||
|
|
||||||
- Lack of maintainers/developers. (no hotfixes, no issues being handled etc)
|
|
||||||
- Most are simple web wrappers, not my cup of tea.
|
|
||||||
- Some are DE-oriented. I want this to work on WM's too.
|
|
||||||
- None have Widevine working at the moment
|
|
||||||
|
|
||||||
Sometimes it's just easier to start over, cover my own needs and after that making it available to the public :)
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
### Dependencies
|
|
||||||
|
|
||||||
Note that you **need** a notification library such as [libnotify](https://github.com/GNOME/libnotify) or [dunst](https://github.com/dunst-project/dunst) for the software to work properly.
|
|
||||||
|
|
||||||
### Using releases
|
### Using releases
|
||||||
|
|
||||||
Various packaged versions of the software are available on the [releases](https://github.com/Mastermindzh/tidal-hifi/releases) tab.
|
Various packaged versions of the software are available on the [releases](https://github.com/Mastermindzh/tidal-hifi/releases) tab.
|
||||||
|
|
||||||
### Snap
|
|
||||||
|
|
||||||
To install with `snap` you need to download the pre-packaged snap-package from this repository, found under releases:
|
|
||||||
|
|
||||||
1. Download
|
|
||||||
|
|
||||||
```sh
|
|
||||||
wget <URI> #for instance: https://github.com/Mastermindzh/tidal-hifi/releases/download/1.0/tidal-hifi_1.0.0_amd64.snap
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Install
|
|
||||||
|
|
||||||
```sh
|
|
||||||
snap install --dangerous <path> #for instance: tidal-hifi_1.0.0_amd64.snap
|
|
||||||
```
|
|
||||||
|
|
||||||
### Arch Linux
|
|
||||||
|
|
||||||
Arch Linux users can use the AUR to install TIDAL Hi-Fi:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
trizen tidal-hifi-git
|
|
||||||
```
|
|
||||||
|
|
||||||
### Flatpak
|
|
||||||
|
|
||||||
To install via [Flatpak](https://flathub.org/apps/details/com.mastermindzh.tidal-hifi) run the following command:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
flatpak install flathub com.mastermindzh.tidal-hifi
|
|
||||||
```
|
|
||||||
|
|
||||||
### Nix
|
|
||||||
|
|
||||||
To install with Nix run the following command:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
nix-env -iA nixpkgs.tidal-hifi
|
|
||||||
```
|
|
||||||
|
|
||||||
### Using source
|
### Using source
|
||||||
|
|
||||||
To install and work with the code on this project follow these steps:
|
To install and work with the code on this project follow these steps:
|
||||||
|
|
||||||
- `git clone https://github.com/Mastermindzh/tidal-hifi.git`
|
- git clone https://github.com/Mastermindzh/tidal-hifi.git
|
||||||
- `cd tidal-hifi`
|
- cd tidal-hifi
|
||||||
- `npm install`
|
- npm install
|
||||||
- `npm run watch` to watch for auto-reload of Typescript/SCSS changes.
|
- npm start
|
||||||
- `npm run compile` can be used to trigger it once
|
|
||||||
- `npm watchStart` to auto watch for any updates files and reload Tidal Hi-Fi
|
## Why
|
||||||
- `npm start` can be used to run Tidal Hi-Fi manually once
|
|
||||||
|
I moved from Spotify over to Tidal and found Linux support to be lacking.
|
||||||
|
|
||||||
|
When I started this project there weren't any Linux apps that offered Tidal's "hifi" options nor any scripts to control it.
|
||||||
|
|
||||||
## Integrations
|
## Integrations
|
||||||
|
|
||||||
TIDAL Hi-Fi comes with several integrations out of the box.
|
- [i3 blocks config]() - My dotfiles where I use this app to fetch currently playing music
|
||||||
You can find these in the settings menu (`ctrl + =` by default) under the "integrations" tab.
|
|
||||||
|
|
||||||

|
## Why not extend existing projects?
|
||||||
|
|
||||||
Integrations with other projects that are not included natively:
|
Whilst there are a handful of projects attempting to run Tidal on Electron they are all unappealing to me because of various reasons:
|
||||||
|
|
||||||
- [i3 blocks config](https://github.com/Mastermindzh/dotfiles/commit/9714b2fa1d670108ce811d5511fd3b7a43180647) - My dotfiles where I use this app to fetch currently playing music (direct commit)
|
- Lack of a maintainers/developers. (no hotfixes, no issues being handled etc)
|
||||||
- [neptune](https://github.com/uwu/neptune) third party plugins & theming
|
- Most are simple web wrappers, not my cup of tea.
|
||||||
|
- Some are DE oriented. I want this to work on WM's too.
|
||||||
|
- None have widevine working at the moment and that is really the hardest part..
|
||||||
|
|
||||||
## Known bugs
|
Sometimes it's just easier to start over, cover my own needs and then making it available to the public :)
|
||||||
|
|
||||||
### DRM not working on Windows (error S6007)
|
## Special thanks to..
|
||||||
|
|
||||||
Most Windows users run into DRM issues when trying to use TIDAL Hi-Fi.
|
|
||||||
Nothing I can do about that I'm afraid... Tidal is working on removing/changing DRM so when they finish with that we can give it another shot.
|
|
||||||
|
|
||||||
Until then you'll have to use the official app unfortunately.
|
|
||||||
|
|
||||||
## Special thanks to
|
|
||||||
|
|
||||||
- [Castlabs](https://castlabs.com/)
|
- [Castlabs](https://castlabs.com/)
|
||||||
For maintaining Electron with Widevine CDM installation, Verified Media Path (VMP), and persistent licenses (StorageID)
|
For maintaining Electron with Widevine CDM installation, Verified Media Path (VMP), and persistent licenses (StorageID)
|
||||||
|
|
||||||
## Donations
|
|
||||||
|
|
||||||
You can find my Github sponsorship page at: [https://github.com/sponsors/Mastermindzh](https://github.com/sponsors/Mastermindzh)
|
|
||||||
|
|
||||||
## Images
|
|
||||||
|
|
||||||
### Settings window
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
### User setups
|
|
||||||
|
|
||||||
Some of our users are kind enough to share their usage pictures.
|
|
||||||
If you want to see them or possibly even add one please do so in the following issue: [#3 - image thread](https://github.com/Mastermindzh/tidal-hifi/issues/3).
|
|
||||||
|
11
SECURITY.md
@ -1,11 +0,0 @@
|
|||||||
# Security Policy
|
|
||||||
|
|
||||||
## Supported Versions
|
|
||||||
|
|
||||||
Only the very latest 😄.
|
|
||||||
|
|
||||||
## Reporting a Vulnerability
|
|
||||||
|
|
||||||
If you find a vulnerability just add it as an issue.
|
|
||||||
If there's an especially bad vulnerability that you don't want to make public just send me a private message (email, discord, wherever).
|
|
||||||
|
|
Before Width: | Height: | Size: 24 KiB |
BIN
assets/icon.png
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.6 KiB |
@ -1,48 +0,0 @@
|
|||||||
appId: com.rickvanlieshout.tidal-hifi
|
|
||||||
electronVersion: 35.1.1
|
|
||||||
electronDownload:
|
|
||||||
version: 35.1.1+wvcus
|
|
||||||
mirror: https://github.com/castlabs/electron-releases/releases/download/v
|
|
||||||
snap:
|
|
||||||
plugs:
|
|
||||||
- default
|
|
||||||
- screen-inhibit-control
|
|
||||||
extraResources:
|
|
||||||
- "themes/**"
|
|
||||||
linux:
|
|
||||||
category: AudioVideo
|
|
||||||
icon: build/icons
|
|
||||||
target:
|
|
||||||
- dir
|
|
||||||
executableName: tidal-hifi
|
|
||||||
executableArgs:
|
|
||||||
[
|
|
||||||
"--enable-features=UseOzonePlatform",
|
|
||||||
"--ozone-platform-hint=auto",
|
|
||||||
"--enable-features=WaylandWindowDecorations",
|
|
||||||
]
|
|
||||||
desktop:
|
|
||||||
entry:
|
|
||||||
Encoding: "UTF-8"
|
|
||||||
Name: "TIDAL Hi-Fi"
|
|
||||||
GenericName: "TIDAL Hi-Fi"
|
|
||||||
Comment: "The web version of listen.tidal.com running in electron with hifi support thanks to widevine."
|
|
||||||
Icon: "tidal-hifi"
|
|
||||||
StartupNotify: "true"
|
|
||||||
Terminal: "false"
|
|
||||||
Type: "Application"
|
|
||||||
Categories: "Network;Application;AudioVideo;Audio;Video"
|
|
||||||
StartupWMClass: "tidal-hifi"
|
|
||||||
X-PulseAudio-Properties: "media.role=music"
|
|
||||||
MimeType: "x-scheme-handler/tidal;"
|
|
||||||
mac:
|
|
||||||
category: public.app-category.entertainment
|
|
||||||
win:
|
|
||||||
icon: icon.png
|
|
||||||
artifactName: "tidalhifi"
|
|
||||||
appId: com.rickvanlieshout.tidalhifi
|
|
||||||
executableName: tidalhifi
|
|
||||||
protocols:
|
|
||||||
name: "tidal"
|
|
||||||
role: "Viewer"
|
|
||||||
schemes: ["tidal"]
|
|
@ -1,4 +0,0 @@
|
|||||||
extends: ./build/electron-builder.base.yml
|
|
||||||
linux:
|
|
||||||
target:
|
|
||||||
- deb
|
|
@ -1,4 +0,0 @@
|
|||||||
extends: ./build/electron-builder.base.yml
|
|
||||||
linux:
|
|
||||||
target:
|
|
||||||
- pacman
|
|
@ -1,4 +0,0 @@
|
|||||||
extends: ./build/electron-builder.base.yml
|
|
||||||
linux:
|
|
||||||
target:
|
|
||||||
- rpm
|
|
@ -1,4 +0,0 @@
|
|||||||
extends: ./build/electron-builder.base.yml
|
|
||||||
linux:
|
|
||||||
target:
|
|
||||||
- snap
|
|
@ -1,4 +0,0 @@
|
|||||||
extends: ./build/electron-builder.base.yml
|
|
||||||
linux:
|
|
||||||
target:
|
|
||||||
- dir
|
|
@ -1,16 +1,17 @@
|
|||||||
extends: ./build/electron-builder.base.yml
|
appId: com.rickvanlieshout.tidal-hifi
|
||||||
|
snap:
|
||||||
|
plugs:
|
||||||
|
- default
|
||||||
|
- screen-inhibit-control
|
||||||
linux:
|
linux:
|
||||||
|
category: Audio
|
||||||
target:
|
target:
|
||||||
- pacman
|
- pacman
|
||||||
- tar.gz
|
- tar.gz
|
||||||
- deb
|
- deb
|
||||||
- rpm
|
|
||||||
- AppImage
|
- AppImage
|
||||||
- snap
|
- snap
|
||||||
- freebsd
|
mac:
|
||||||
|
category: public.app-category.entertainment
|
||||||
win:
|
win:
|
||||||
target: msi
|
target: msi
|
||||||
icon: icon.png
|
|
||||||
artifactName: "tidalhifi"
|
|
||||||
appId: com.rickvanlieshout.tidalhifi
|
|
||||||
executableName: tidalhifi
|
|
||||||
|
Before Width: | Height: | Size: 24 KiB |
BIN
build/icon.icns
BIN
build/icon.ico
Normal file
After Width: | Height: | Size: 103 KiB |
BIN
build/icon.png
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 262 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 726 KiB |
Before Width: | Height: | Size: 317 KiB |
Before Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 800 KiB After Width: | Height: | Size: 800 KiB |
@ -1,38 +0,0 @@
|
|||||||
# Theming TIDAL Hi-Fi
|
|
||||||
|
|
||||||
## Table of contents
|
|
||||||
|
|
||||||
<!-- toc -->
|
|
||||||
|
|
||||||
- [Theming TIDAL Hi-Fi](#theming-TIDAL Hi-Fi)
|
|
||||||
- [Table of contents](#table-of-contents)
|
|
||||||
- [Custom CSS](#custom-css)
|
|
||||||
- [config](#config)
|
|
||||||
- [Warning! Themes might break](#warning-themes-might-break)
|
|
||||||
|
|
||||||
<!-- tocstop -->
|
|
||||||
|
|
||||||
By default TIDAL Hi-Fi comes with a few themes.
|
|
||||||
You can select these in the settings window under the theming tab as shown below.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## Custom CSS
|
|
||||||
|
|
||||||
The custom CSS will be added to the HTML document last.
|
|
||||||
This means that it will overwrite any existing CSS, even that of themes, unless the original has an access modifier such as `$important`.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## config
|
|
||||||
|
|
||||||
The theme selector and customCSS are stored in the config file.
|
|
||||||
The custom CSS is stored as a list of lines.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## Warning! Themes might break
|
|
||||||
|
|
||||||
Themes might break at any point. Tidal changes their webpage structure a ton (they probably generate classNames and don't provide roles/ids/attributes.)
|
|
||||||
|
|
||||||
If one breaks you can create an Issue on GitHub or ask for assistance in the [Discord channel](https://discord.gg/yhNwf4v4He).
|
|
12541
package-lock.json
generated
74
package.json
@ -1,83 +1,29 @@
|
|||||||
{
|
{
|
||||||
"name": "tidal-hifi",
|
"name": "tidal-hifi",
|
||||||
"version": "5.18.2",
|
"version": "0.1.0",
|
||||||
"description": "Tidal on Electron with widevine(hifi) support",
|
"description": "Tidal on Electron with widevine(hifi) support",
|
||||||
"main": "ts-dist/main.js",
|
"main": "src/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "electron --inspect=0.0.0.0:5858 --remote-debugging-port=8315 --remote-allow-origins=* .",
|
"start": "electron .",
|
||||||
"watchStart": "nodemon dist -x \"npm run start\"",
|
"build": "electron-builder -c ./build/electron-builder.yml"
|
||||||
"compile": "tsc && npm run sass-and-copy",
|
|
||||||
"deps": "npm run watch",
|
|
||||||
"watch": "tsc-watch --onSuccess \"npm run compile-all\"",
|
|
||||||
"copy-files": "copyfiles -u 1 --exclude './src/**/*.ts' --exclude './src/**/*.scss' \"./src/**/*\" ts-dist",
|
|
||||||
"copy-themes-dev": "copyfiles -u 1 \"./themes/*\" node_modules/electron/dist/resources",
|
|
||||||
"compile-all": "npm run sass-and-copy && ts-node scripts/generate-swagger.ts",
|
|
||||||
"sass-and-copy": "npm run sass && npm run copy-files && npm run copy-themes-dev",
|
|
||||||
"build": "npm run builder -- -c ./build/electron-builder.yml",
|
|
||||||
"build-deb": "npm run builder -- -c ./build/electron-builder.deb.yml",
|
|
||||||
"build-unpacked": "npm run builder -- -c ./build/electron-builder.unpacked.yml",
|
|
||||||
"build-rpm": "npm run builder -- -c ./build/electron-builder.rpm.yml",
|
|
||||||
"build-snap": "npm run builder -- -c ./build/electron-builder.snap.yml",
|
|
||||||
"build-arch": "npm run builder -- -c ./build/electron-builder.pacman.yml",
|
|
||||||
"build-wl": "npm run builder -- -c ./build/electron-builder.yml -wl",
|
|
||||||
"build-mac": "npm run builder -- -c ./build/electron-builder.yml -m",
|
|
||||||
"build-base": "npm run builder -- -c ./build/electron-builder.base.yml",
|
|
||||||
"prebuilder": "npm run compile",
|
|
||||||
"builder": "electron-builder --publish=never",
|
|
||||||
"sass": "sass ./src/pages/settings/settings.scss ./src/pages/settings/settings.css && sass --no-source-map src/themes:themes",
|
|
||||||
"style-lint": "npx stylelint **/*.scss",
|
|
||||||
"style-lint-fix": "npx stylelint --fix **/*.scss"
|
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"electron",
|
"electron",
|
||||||
"hifi",
|
"hifi",
|
||||||
"widevine",
|
"widevine",
|
||||||
"linux",
|
"linux"
|
||||||
"drm",
|
|
||||||
"castlabs"
|
|
||||||
],
|
],
|
||||||
"author": "Rick van Lieshout <info@rickvanlieshout.com> (http://rickvanlieshout.com)",
|
"author": "Rick van Lieshout <info@rickvanlieshout.com> (http://rickvanlieshout.com)",
|
||||||
"homepage": "https://github.com/Mastermindzh/tidal-hifi",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@electron/remote": "^2.1.2",
|
"hotkeys-js": "^3.7.1"
|
||||||
"@types/swagger-jsdoc": "^6.0.4",
|
|
||||||
"@xhayper/discord-rpc": "^1.2.1",
|
|
||||||
"axios": "^1.8.4",
|
|
||||||
"electron-store": "^8.2.0",
|
|
||||||
"express": "^4.21.2",
|
|
||||||
"hotkeys-js": "^3.13.9",
|
|
||||||
"mpris-service": "^2.1.2",
|
|
||||||
"sass": "1.86.0",
|
|
||||||
"swagger-ui-express": "^5.0.1",
|
|
||||||
"cors": "^2.8.5",
|
|
||||||
"request": "^2.88.2"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@mastermindzh/prettier-config": "^1.0.0",
|
"@mastermindzh/prettier-config": "^1.0.0",
|
||||||
"@types/cors": "^2.8.17",
|
"electron": "https://github.com/castlabs/electron-releases#v6.0.12-wvvmp",
|
||||||
"@types/express": "^4.17.21",
|
"electron-builder": "^21.2.0",
|
||||||
"@types/node": "^20.14.10",
|
"electron-reload": "^1.5.0",
|
||||||
"@types/request": "^2.48.12",
|
"prettier": "^1.18.2"
|
||||||
"@types/swagger-ui-express": "^4.1.6",
|
|
||||||
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
||||||
"@typescript-eslint/parser": "^7.15.0",
|
|
||||||
"copyfiles": "^2.4.1",
|
|
||||||
"electron": "github:castlabs/electron-releases#v35.1.1+wvcus",
|
|
||||||
"electron-builder": "~26.0.12",
|
|
||||||
"eslint": "^8.57.0",
|
|
||||||
"js-yaml": "^4.1.0",
|
|
||||||
"markdown-toc": "^1.2.0",
|
|
||||||
"nodemon": "^3.1.4",
|
|
||||||
"prettier": "^3.3.2",
|
|
||||||
"stylelint": "^16.6.1",
|
|
||||||
"stylelint-config-standard": "^36.0.1",
|
|
||||||
"stylelint-config-standard-scss": "^13.1.0",
|
|
||||||
"stylelint-prettier": "^5.0.0",
|
|
||||||
"swagger-jsdoc": "^6.2.8",
|
|
||||||
"ts-node": "^10.9.2",
|
|
||||||
"tsc-watch": "^6.2.0",
|
|
||||||
"typescript": "^5.5.3"
|
|
||||||
},
|
},
|
||||||
"prettier": "@mastermindzh/prettier-config"
|
"prettier": "@mastermindzh/prettier-config"
|
||||||
}
|
}
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
import fs from "fs";
|
|
||||||
import swaggerjsdoc from "swagger-jsdoc";
|
|
||||||
import packagejson from "./../package.json";
|
|
||||||
|
|
||||||
const specs = swaggerjsdoc({
|
|
||||||
definition: {
|
|
||||||
openapi: "3.1.0",
|
|
||||||
info: {
|
|
||||||
title: "TIDAL Hi-Fi API",
|
|
||||||
version: packagejson.version,
|
|
||||||
description: "",
|
|
||||||
license: {
|
|
||||||
name: packagejson.license,
|
|
||||||
url: "https://github.com/Mastermindzh/tidal-hifi/blob/master/LICENSE",
|
|
||||||
},
|
|
||||||
contact: {
|
|
||||||
name: "Rick <mastermindzh> van Lieshout",
|
|
||||||
url: "https://www.rickvanlieshout.com",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
externalDocs: {
|
|
||||||
description: "swagger.json",
|
|
||||||
url: "swagger.json",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
apis: ["**/*.ts"],
|
|
||||||
});
|
|
||||||
|
|
||||||
fs.writeFileSync("src/features/api/swagger.json", JSON.stringify(specs, null, 2), "utf8");
|
|
||||||
console.log("Written swagger.json");
|
|
@ -1,16 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ "$1" != "" ]; then # check if arg 1 is present
|
|
||||||
FILE=$1
|
|
||||||
else
|
|
||||||
echo "Please provide a file as an argument."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
SIZES=("16x16" "22x22" "24x24" "32x32" "48x48" "64x64" "128x128" "256x256" "384x384")
|
|
||||||
|
|
||||||
echo "Resizing $FILE..."
|
|
||||||
|
|
||||||
for i in "${SIZES[@]}"; do
|
|
||||||
convert "$FILE" -resize "$i" "$i.png"
|
|
||||||
done
|
|
@ -1,48 +0,0 @@
|
|||||||
// for some dumb reason `listen.tidal.com` has disabled console.log
|
|
||||||
// we can simply return an array with values though...
|
|
||||||
// run this on a playlist or mix page and observe the result
|
|
||||||
// NOTE: play & pause can't live together so one or the other will throw an error
|
|
||||||
(() => {
|
|
||||||
let elements = {
|
|
||||||
play: '*[data-test="play"]',
|
|
||||||
pause: '*[data-test="pause"]',
|
|
||||||
next: '*[data-test="next"]',
|
|
||||||
previous: 'button[data-test="previous"]',
|
|
||||||
title: '*[data-test^="footer-track-title"]',
|
|
||||||
artists: '*[data-test^="grid-item-detail-text-title-artist"]',
|
|
||||||
home: '*[data-test="menu--home"]',
|
|
||||||
back: '[title^="Back"]',
|
|
||||||
forward: '[title^="Next"]',
|
|
||||||
search: '[class^="searchField"]',
|
|
||||||
shuffle: '*[data-test="shuffle"]',
|
|
||||||
repeat: '*[data-test="repeat"]',
|
|
||||||
account: '*[data-test^="profile-image-button"]',
|
|
||||||
settings: '*[data-test^="sidebar-menu-button"]',
|
|
||||||
openSettings: '*[data-test^="open-settings"]',
|
|
||||||
media: '*[data-test="current-media-imagery"]',
|
|
||||||
image: "img",
|
|
||||||
current: '*[data-test="current-time"]',
|
|
||||||
duration: '*[class^=_playbackControlsContainer] *[data-test="duration"]',
|
|
||||||
bar: '*[data-test="progress-bar"]',
|
|
||||||
footer: "#footerPlayer",
|
|
||||||
mediaItem: "[data-type='mediaItem']",
|
|
||||||
album_header_title: '*[class^="_playingFrom"] span:nth-child(2)',
|
|
||||||
playing_from: '*[class^="_playingFrom"] span:nth-child(2)',
|
|
||||||
queue_album: "*[class^=playQueueItemsContainer] *[class^=groupTitle] span:nth-child(2)",
|
|
||||||
currentlyPlaying: "[class^='isPlayingIcon'], [data-test-is-playing='true']",
|
|
||||||
album_name_cell: '[class^="album"]',
|
|
||||||
tracklist_row: '[data-test="tracklist-row"]',
|
|
||||||
volume: '*[data-test="volume"]',
|
|
||||||
favorite: '*[data-test="footer-favorite-button"]',
|
|
||||||
};
|
|
||||||
|
|
||||||
let results = [];
|
|
||||||
|
|
||||||
Object.entries(elements).forEach(([key, value]) => {
|
|
||||||
const returnValue = document.querySelector(`${value}`);
|
|
||||||
if (!returnValue) {
|
|
||||||
results.push(`element ${key} not found`);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return results;
|
|
||||||
})();
|
|
@ -1,9 +0,0 @@
|
|||||||
export const flags: { [key: string]: { flag: string; value?: string }[] } = {
|
|
||||||
gpuRasterization: [{ flag: "enable-gpu-rasterization", value: undefined }],
|
|
||||||
disableHardwareMediaKeys: [{ flag: "disable-features", value: "HardwareMediaKeyHandling" }],
|
|
||||||
enableWaylandSupport: [
|
|
||||||
{ flag: "enable-features", value: "UseOzonePlatform" },
|
|
||||||
{ flag: "ozone-platform-hint", value: "auto" },
|
|
||||||
{ flag: "enable-features", value: "WaylandWindowDecorations" },
|
|
||||||
],
|
|
||||||
};
|
|
@ -1,18 +0,0 @@
|
|||||||
export const globalEvents = {
|
|
||||||
play: "play",
|
|
||||||
pause: "pause",
|
|
||||||
playPause: "playPause",
|
|
||||||
next: "next",
|
|
||||||
previous: "previous",
|
|
||||||
updateInfo: "update-info",
|
|
||||||
hideSettings: "hideSettings",
|
|
||||||
refreshMenuBar: "refreshMenubar",
|
|
||||||
showSettings: "showSettings",
|
|
||||||
storeChanged: "storeChanged",
|
|
||||||
error: "error",
|
|
||||||
getUniversalLink: "getUniversalLink",
|
|
||||||
log: "log",
|
|
||||||
toggleFavorite: "toggleFavorite",
|
|
||||||
toggleShuffle: "toggleShuffle",
|
|
||||||
toggleRepeat: "toggleRepeat",
|
|
||||||
};
|
|
@ -1,7 +0,0 @@
|
|||||||
import { globalEvents } from "./globalEvents";
|
|
||||||
|
|
||||||
export const mediaKeys = {
|
|
||||||
MediaPlayPause: globalEvents.playPause,
|
|
||||||
MediaNextTrack: globalEvents.next,
|
|
||||||
MediaPreviousTrack: globalEvents.previous,
|
|
||||||
};
|
|
@ -1,67 +0,0 @@
|
|||||||
/**
|
|
||||||
* Object to type my settings file:
|
|
||||||
*
|
|
||||||
* notifications: true,
|
|
||||||
* api: true,
|
|
||||||
* apiSettings: {
|
|
||||||
* port: 47836,
|
|
||||||
* },
|
|
||||||
* windowBounds: { width: 800, height: 600 },
|
|
||||||
*/
|
|
||||||
export const settings = {
|
|
||||||
adBlock: "adBlock",
|
|
||||||
advanced: {
|
|
||||||
root: "advanced",
|
|
||||||
tidalUrl: "advanced.tidalUrl",
|
|
||||||
},
|
|
||||||
api: "api",
|
|
||||||
apiSettings: {
|
|
||||||
root: "apiSettings",
|
|
||||||
port: "apiSettings.port",
|
|
||||||
hostname: "apiSettings.hostname",
|
|
||||||
},
|
|
||||||
customCSS: "customCSS",
|
|
||||||
disableBackgroundThrottle: "disableBackgroundThrottle",
|
|
||||||
disableHardwareMediaKeys: "disableHardwareMediaKeys",
|
|
||||||
enableCustomHotkeys: "enableCustomHotkeys",
|
|
||||||
enableDiscord: "enableDiscord",
|
|
||||||
discord: {
|
|
||||||
detailsPrefix: "discord.detailsPrefix",
|
|
||||||
buttonText: "discord.buttonText",
|
|
||||||
includeTimestamps: "discord.includeTimestamps",
|
|
||||||
showSong: "discord.showSong",
|
|
||||||
showIdle: "discord.showIdle",
|
|
||||||
idleText: "discord.idleText",
|
|
||||||
usingText: "discord.usingText",
|
|
||||||
},
|
|
||||||
ListenBrainz: {
|
|
||||||
root: "ListenBrainz",
|
|
||||||
enabled: "ListenBrainz.enabled",
|
|
||||||
api: "ListenBrainz.api",
|
|
||||||
token: "ListenBrainz.token",
|
|
||||||
delay: "ListenBrainz.delay",
|
|
||||||
},
|
|
||||||
flags: {
|
|
||||||
root: "flags",
|
|
||||||
disableHardwareMediaKeys: "flags.disableHardwareMediaKeys",
|
|
||||||
gpuRasterization: "flags.gpuRasterization",
|
|
||||||
enableWaylandSupport: "flags.enableWaylandSupport",
|
|
||||||
},
|
|
||||||
menuBar: "menuBar",
|
|
||||||
minimizeOnClose: "minimizeOnClose",
|
|
||||||
mpris: "mpris",
|
|
||||||
notifications: "notifications",
|
|
||||||
playBackControl: "playBackControl",
|
|
||||||
singleInstance: "singleInstance",
|
|
||||||
skipArtists: "skipArtists",
|
|
||||||
skippedArtists: "skippedArtists",
|
|
||||||
staticWindowTitle: "staticWindowTitle",
|
|
||||||
theme: "theme",
|
|
||||||
trayIcon: "trayIcon",
|
|
||||||
updateFrequency: "updateFrequency",
|
|
||||||
windowBounds: {
|
|
||||||
root: "windowBounds",
|
|
||||||
width: "windowBounds.width",
|
|
||||||
height: "windowBounds.height",
|
|
||||||
},
|
|
||||||
};
|
|
@ -1,3 +0,0 @@
|
|||||||
export default {
|
|
||||||
name: "TIDAL Hi-Fi",
|
|
||||||
};
|
|
1
src/declarations.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
declare module "mpris-service";
|
|
@ -1,123 +0,0 @@
|
|||||||
import { Request, Response, Router } from "express";
|
|
||||||
import fs from "fs";
|
|
||||||
import { mediaInfo } from "../../../scripts/mediaInfo";
|
|
||||||
|
|
||||||
export const addCurrentInfo = (expressApp: Router) => {
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* tags:
|
|
||||||
* name: current
|
|
||||||
* description: The current media info API
|
|
||||||
* components:
|
|
||||||
* schemas:
|
|
||||||
* MediaInfo:
|
|
||||||
* type: object
|
|
||||||
* properties:
|
|
||||||
* title:
|
|
||||||
* type: string
|
|
||||||
* artists:
|
|
||||||
* type: string
|
|
||||||
* album:
|
|
||||||
* type: string
|
|
||||||
* icon:
|
|
||||||
* type: string
|
|
||||||
* format: uri
|
|
||||||
* playingFrom:
|
|
||||||
* type: string
|
|
||||||
* status:
|
|
||||||
* type: string
|
|
||||||
* url:
|
|
||||||
* type: string
|
|
||||||
* format: uri
|
|
||||||
* current:
|
|
||||||
* type: string
|
|
||||||
* currentInSeconds:
|
|
||||||
* type: integer
|
|
||||||
* duration:
|
|
||||||
* type: string
|
|
||||||
* durationInSeconds:
|
|
||||||
* type: integer
|
|
||||||
* image:
|
|
||||||
* type: string
|
|
||||||
* format: uri
|
|
||||||
* favorite:
|
|
||||||
* type: boolean
|
|
||||||
* player:
|
|
||||||
* type: object
|
|
||||||
* properties:
|
|
||||||
* status:
|
|
||||||
* type: string
|
|
||||||
* shuffle:
|
|
||||||
* type: boolean
|
|
||||||
* repeat:
|
|
||||||
* type: string
|
|
||||||
* artist:
|
|
||||||
* type: string
|
|
||||||
* example:
|
|
||||||
* title: "Sample Title"
|
|
||||||
* artists: "Sample Artist"
|
|
||||||
* album: "Sample Album"
|
|
||||||
* icon: "/path/to/sample/icon.jpg"
|
|
||||||
* playingFrom: "Sample Playlist"
|
|
||||||
* status: "playing"
|
|
||||||
* url: "https://tidal.com/browse/track/sample"
|
|
||||||
* current: "1:23"
|
|
||||||
* currentInSeconds: 83
|
|
||||||
* duration: "3:45"
|
|
||||||
* durationInSeconds: 225
|
|
||||||
* image: "https://example.com/sample-image.jpg"
|
|
||||||
* favorite: true
|
|
||||||
* player:
|
|
||||||
* status: "playing"
|
|
||||||
* shuffle: true
|
|
||||||
* repeat: "one"
|
|
||||||
* artist: "Sample Artist"
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /current:
|
|
||||||
* get:
|
|
||||||
* summary: Get current media info
|
|
||||||
* tags: [current]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Current media info
|
|
||||||
* content:
|
|
||||||
* application/json:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/MediaInfo'
|
|
||||||
*/
|
|
||||||
expressApp.get("/current", (req, res) => res.json({ ...mediaInfo, artist: mediaInfo.artists }));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /current/image:
|
|
||||||
* get:
|
|
||||||
* summary: Get current media image
|
|
||||||
* tags: [current]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Current media image
|
|
||||||
* content:
|
|
||||||
* image/png:
|
|
||||||
* schema:
|
|
||||||
* type: string
|
|
||||||
* format: binary
|
|
||||||
* 404:
|
|
||||||
* description: Not found
|
|
||||||
*/
|
|
||||||
expressApp.get("/current/image", getCurrentImage);
|
|
||||||
};
|
|
||||||
|
|
||||||
export const getCurrentImage = (req: Request, res: Response) => {
|
|
||||||
const stream = fs.createReadStream(mediaInfo.icon);
|
|
||||||
stream.on("open", function () {
|
|
||||||
res.set("Content-Type", "image/png");
|
|
||||||
stream.pipe(res);
|
|
||||||
});
|
|
||||||
stream.on("error", function () {
|
|
||||||
res.set("Content-Type", "text/plain");
|
|
||||||
res.status(404).end("Not found");
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,164 +0,0 @@
|
|||||||
import { BrowserWindow } from "electron";
|
|
||||||
import { Router } from "express";
|
|
||||||
import { globalEvents } from "../../../constants/globalEvents";
|
|
||||||
import { settings } from "../../../constants/settings";
|
|
||||||
import { MediaStatus } from "../../../models/mediaStatus";
|
|
||||||
import { mediaInfo } from "../../../scripts/mediaInfo";
|
|
||||||
import { settingsStore } from "../../../scripts/settings";
|
|
||||||
import { handleWindowEvent } from "../helpers/handleWindowEvent";
|
|
||||||
|
|
||||||
export const addPlaybackControl = (expressApp: Router, mainWindow: BrowserWindow) => {
|
|
||||||
const windowEvent = handleWindowEvent(mainWindow);
|
|
||||||
const createRoute = (route: string) => `/player${route}`;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* tags:
|
|
||||||
* name: player
|
|
||||||
* description: The player control API
|
|
||||||
* components:
|
|
||||||
* schemas:
|
|
||||||
* OkResponse:
|
|
||||||
* type: string
|
|
||||||
* example: "OK"
|
|
||||||
*/
|
|
||||||
const createPlayerAction = (route: string, action: string) => {
|
|
||||||
expressApp.post(createRoute(route), (req, res) => windowEvent(res, action));
|
|
||||||
};
|
|
||||||
|
|
||||||
if (settingsStore.get(settings.playBackControl)) {
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/play:
|
|
||||||
* post:
|
|
||||||
* summary: Play the current media
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
createPlayerAction("/play", globalEvents.play);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/favorite/toggle:
|
|
||||||
* post:
|
|
||||||
* summary: Add the current media to your favorites, or remove it if its already added to your favorites
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
createPlayerAction("/favorite/toggle", globalEvents.toggleFavorite);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/pause:
|
|
||||||
* post:
|
|
||||||
* summary: Pause the current media
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
createPlayerAction("/pause", globalEvents.pause);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/next:
|
|
||||||
* post:
|
|
||||||
* summary: Play the next song
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
createPlayerAction("/next", globalEvents.next);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/previous:
|
|
||||||
* post:
|
|
||||||
* summary: Play the previous song
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
createPlayerAction("/previous", globalEvents.previous);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/shuffle/toggle:
|
|
||||||
* post:
|
|
||||||
* summary: Play the previous song
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
createPlayerAction("/shuffle/toggle", globalEvents.toggleShuffle);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/repeat/toggle:
|
|
||||||
* post:
|
|
||||||
* summary: Toggle the repeat status, toggles between "off" , "single" and "all"
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
createPlayerAction("/repeat/toggle", globalEvents.toggleRepeat);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /player/playpause:
|
|
||||||
* post:
|
|
||||||
* summary: Start playing the media if paused, or pause the media if playing
|
|
||||||
* tags: [player]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
expressApp.post(createRoute("/playpause"), (req, res) => {
|
|
||||||
if (mediaInfo.status === MediaStatus.playing) {
|
|
||||||
windowEvent(res, globalEvents.pause);
|
|
||||||
} else {
|
|
||||||
windowEvent(res, globalEvents.play);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
@ -1,121 +0,0 @@
|
|||||||
import { Request, Router } from "express";
|
|
||||||
import { settings } from "../../../../constants/settings";
|
|
||||||
import { mediaInfo } from "../../../../scripts/mediaInfo";
|
|
||||||
import {
|
|
||||||
addSkippedArtists,
|
|
||||||
removeSkippedArtists,
|
|
||||||
settingsStore,
|
|
||||||
} from "../../../../scripts/settings";
|
|
||||||
import { BrowserWindow } from "electron";
|
|
||||||
import { globalEvents } from "../../../../constants/globalEvents";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* tags:
|
|
||||||
* name: settings
|
|
||||||
* description: The settings management API
|
|
||||||
* components:
|
|
||||||
* schemas:
|
|
||||||
* StringArray:
|
|
||||||
* type: array
|
|
||||||
* items:
|
|
||||||
* type: string
|
|
||||||
* example: ["Artist1", "Artist2"]
|
|
||||||
*
|
|
||||||
* @param expressApp
|
|
||||||
* @param mainWindow
|
|
||||||
*/
|
|
||||||
export const addSettingsAPI = (expressApp: Router, mainWindow: BrowserWindow) => {
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /settings/skipped-artists:
|
|
||||||
* get:
|
|
||||||
* summary: get a list of artists that TIDAL Hi-Fi will skip if skipping is enabled
|
|
||||||
* tags: [settings]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: The list book.
|
|
||||||
* content:
|
|
||||||
* application/json:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/StringArray'
|
|
||||||
*/
|
|
||||||
expressApp.get("/settings/skipped-artists", (req, res) => {
|
|
||||||
res.json(settingsStore.get<string, string[]>(settings.skippedArtists));
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /settings/skipped-artists:
|
|
||||||
* post:
|
|
||||||
* summary: Add new artists to the list of skipped artists
|
|
||||||
* tags: [settings]
|
|
||||||
* requestBody:
|
|
||||||
* required: true
|
|
||||||
* content:
|
|
||||||
* application/json:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/StringArray'
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
*/
|
|
||||||
expressApp.post("/settings/skipped-artists", (req: Request<object, object, string[]>, res) => {
|
|
||||||
addSkippedArtists(req.body);
|
|
||||||
res.sendStatus(200);
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /settings/skipped-artists/delete:
|
|
||||||
* post:
|
|
||||||
* summary: Remove artists from the list of skipped artists
|
|
||||||
* tags: [settings]
|
|
||||||
* requestBody:
|
|
||||||
* required: true
|
|
||||||
* content:
|
|
||||||
* application/json:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/StringArray'
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
*/
|
|
||||||
expressApp.post(
|
|
||||||
"/settings/skipped-artists/delete",
|
|
||||||
(req: Request<object, object, string[]>, res) => {
|
|
||||||
removeSkippedArtists(req.body);
|
|
||||||
res.sendStatus(200);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /settings/skipped-artists/current:
|
|
||||||
* post:
|
|
||||||
* summary: Add the current artist to the list of skipped artists
|
|
||||||
* tags: [settings]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
*/
|
|
||||||
expressApp.post("/settings/skipped-artists/current", (req, res) => {
|
|
||||||
addSkippedArtists([mediaInfo.artists]);
|
|
||||||
mainWindow.webContents.send("globalEvent", globalEvents.next);
|
|
||||||
res.sendStatus(200);
|
|
||||||
});
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /settings/skipped-artists/current:
|
|
||||||
* delete:
|
|
||||||
* summary: Remove the current artist from the list of skipped artists
|
|
||||||
* tags: [settings]
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
*/
|
|
||||||
expressApp.delete("/settings/skipped-artists/current", (req, res) => {
|
|
||||||
removeSkippedArtists([mediaInfo.artists]);
|
|
||||||
res.sendStatus(200);
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,12 +0,0 @@
|
|||||||
import { BrowserWindow } from "electron";
|
|
||||||
import { Response } from "express";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Shorthand to handle a fire and forget global event
|
|
||||||
* @param {*} res
|
|
||||||
* @param {*} action
|
|
||||||
*/
|
|
||||||
export const handleWindowEvent = (mainWindow: BrowserWindow) => (res: Response, action: string) => {
|
|
||||||
mainWindow.webContents.send("globalEvent", action);
|
|
||||||
res.sendStatus(200);
|
|
||||||
};
|
|
@ -1,42 +0,0 @@
|
|||||||
import cors from "cors";
|
|
||||||
import { BrowserWindow, dialog } from "electron";
|
|
||||||
import express from "express";
|
|
||||||
import swaggerUi from "swagger-ui-express";
|
|
||||||
import { settingsStore } from "../../scripts/settings";
|
|
||||||
import { settings } from "./../../constants/settings";
|
|
||||||
import { addCurrentInfo } from "./features/current";
|
|
||||||
import { addPlaybackControl } from "./features/player";
|
|
||||||
import { addSettingsAPI } from "./features/settings/settings";
|
|
||||||
import { addLegacyApi } from "./legacy";
|
|
||||||
import swaggerSpec from "./swagger.json";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Function to enable TIDAL Hi-Fi's express api
|
|
||||||
*/
|
|
||||||
export const startApi = (mainWindow: BrowserWindow) => {
|
|
||||||
const port = settingsStore.get<string, number>(settings.apiSettings.port);
|
|
||||||
const hostname = settingsStore.get<string, string>(settings.apiSettings.hostname) ?? "127.0.0.1";
|
|
||||||
|
|
||||||
const expressApp = express();
|
|
||||||
expressApp.use(cors());
|
|
||||||
expressApp.use(express.json());
|
|
||||||
expressApp.use("/docs", swaggerUi.serve, swaggerUi.setup(swaggerSpec));
|
|
||||||
expressApp.get("/", (req, res) => res.send("Hello World!"));
|
|
||||||
expressApp.get("/swagger.json", (req, res) => res.json(swaggerSpec));
|
|
||||||
|
|
||||||
// add features
|
|
||||||
addLegacyApi(expressApp, mainWindow);
|
|
||||||
addPlaybackControl(expressApp, mainWindow);
|
|
||||||
addCurrentInfo(expressApp);
|
|
||||||
addSettingsAPI(expressApp, mainWindow);
|
|
||||||
|
|
||||||
const expressInstance = expressApp.listen(port, hostname);
|
|
||||||
expressInstance.on("error", function (e: { code: string }) {
|
|
||||||
let message = e.code;
|
|
||||||
if (e.code === "EADDRINUSE") {
|
|
||||||
message = `Port ${port} in use.`;
|
|
||||||
}
|
|
||||||
|
|
||||||
dialog.showErrorBox("Api failed to start.", message);
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,160 +0,0 @@
|
|||||||
import { BrowserWindow } from "electron";
|
|
||||||
import { Response, Router } from "express";
|
|
||||||
import { globalEvents } from "../../constants/globalEvents";
|
|
||||||
import { settings } from "../../constants/settings";
|
|
||||||
import { MediaStatus } from "../../models/mediaStatus";
|
|
||||||
import { mediaInfo } from "../../scripts/mediaInfo";
|
|
||||||
import { settingsStore } from "../../scripts/settings";
|
|
||||||
import { getCurrentImage } from "./features/current";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The legacy API, this will not be maintained and probably has duplicate code :)
|
|
||||||
* @param expressApp
|
|
||||||
* @param mainWindow
|
|
||||||
*/
|
|
||||||
export const addLegacyApi = (expressApp: Router, mainWindow: BrowserWindow) => {
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /image:
|
|
||||||
* get:
|
|
||||||
* summary: Get current image
|
|
||||||
* tags: [legacy]
|
|
||||||
* deprecated: true
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Current image
|
|
||||||
* content:
|
|
||||||
* image/png:
|
|
||||||
* schema:
|
|
||||||
* type: string
|
|
||||||
* format: binary
|
|
||||||
* 404:
|
|
||||||
* description: Not found
|
|
||||||
*/
|
|
||||||
expressApp.get("/image", getCurrentImage);
|
|
||||||
|
|
||||||
if (settingsStore.get(settings.playBackControl)) {
|
|
||||||
addLegacyControls();
|
|
||||||
}
|
|
||||||
function addLegacyControls() {
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /play:
|
|
||||||
* get:
|
|
||||||
* summary: Play the current media
|
|
||||||
* tags: [legacy]
|
|
||||||
* deprecated: true
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Action performed
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
expressApp.get("/play", ({ res }) => handleGlobalEvent(res, globalEvents.play));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /favorite/toggle:
|
|
||||||
* get:
|
|
||||||
* summary: Add the current media to your favorites, or remove it if its already added to your favorites
|
|
||||||
* tags: [legacy]
|
|
||||||
* deprecated: true
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
expressApp.post("/favorite/toggle", (req, res) =>
|
|
||||||
handleGlobalEvent(res, globalEvents.toggleFavorite)
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /pause:
|
|
||||||
* get:
|
|
||||||
* summary: Pause the current media
|
|
||||||
* tags: [legacy]
|
|
||||||
* deprecated: true
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
expressApp.get("/pause", (req, res) => handleGlobalEvent(res, globalEvents.pause));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /next:
|
|
||||||
* get:
|
|
||||||
* summary: Play the next song
|
|
||||||
* tags: [legacy]
|
|
||||||
* deprecated: true
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
expressApp.get("/next", (req, res) => handleGlobalEvent(res, globalEvents.next));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /previous:
|
|
||||||
* get:
|
|
||||||
* summary: Play the previous song
|
|
||||||
* tags: [legacy]
|
|
||||||
* deprecated: true
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
expressApp.get("/previous", (req, res) => handleGlobalEvent(res, globalEvents.previous));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @swagger
|
|
||||||
* /playpause:
|
|
||||||
* get:
|
|
||||||
* summary: Toggle play/pause
|
|
||||||
* tags: [legacy]
|
|
||||||
* deprecated: true
|
|
||||||
* responses:
|
|
||||||
* 200:
|
|
||||||
* description: Ok
|
|
||||||
* content:
|
|
||||||
* text/plain:
|
|
||||||
* schema:
|
|
||||||
* $ref: '#/components/schemas/OkResponse'
|
|
||||||
*/
|
|
||||||
expressApp.get("/playpause", (req, res) => {
|
|
||||||
if (mediaInfo.status === MediaStatus.playing) {
|
|
||||||
handleGlobalEvent(res, globalEvents.pause);
|
|
||||||
} else {
|
|
||||||
handleGlobalEvent(res, globalEvents.play);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Shorthand to handle a fire and forget global event
|
|
||||||
* @param {*} res
|
|
||||||
* @param {*} action
|
|
||||||
*/
|
|
||||||
function handleGlobalEvent(res: Response, action: string) {
|
|
||||||
mainWindow.webContents.send("globalEvent", action);
|
|
||||||
res.sendStatus(200);
|
|
||||||
}
|
|
||||||
};
|
|
@ -1,535 +0,0 @@
|
|||||||
{
|
|
||||||
"openapi": "3.1.0",
|
|
||||||
"info": {
|
|
||||||
"title": "TIDAL Hi-Fi API",
|
|
||||||
"version": "5.18.2",
|
|
||||||
"description": "",
|
|
||||||
"license": {
|
|
||||||
"name": "MIT",
|
|
||||||
"url": "https://github.com/Mastermindzh/tidal-hifi/blob/master/LICENSE"
|
|
||||||
},
|
|
||||||
"contact": {
|
|
||||||
"name": "Rick <mastermindzh> van Lieshout",
|
|
||||||
"url": "https://www.rickvanlieshout.com"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"externalDocs": {
|
|
||||||
"description": "swagger.json",
|
|
||||||
"url": "swagger.json"
|
|
||||||
},
|
|
||||||
"paths": {
|
|
||||||
"/current": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get current media info",
|
|
||||||
"tags": ["current"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Current media info",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/MediaInfo"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/current/image": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get current media image",
|
|
||||||
"tags": ["current"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Current media image",
|
|
||||||
"content": {
|
|
||||||
"image/png": {
|
|
||||||
"schema": {
|
|
||||||
"type": "string",
|
|
||||||
"format": "binary"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"404": {
|
|
||||||
"description": "Not found"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/play": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Play the current media",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/favorite/toggle": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Add the current media to your favorites, or remove it if its already added to your favorites",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/pause": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Pause the current media",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/next": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Play the next song",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/previous": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Play the previous song",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/shuffle/toggle": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Play the previous song",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/repeat/toggle": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Toggle the repeat status, toggles between \"off\" , \"single\" and \"all\"",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/player/playpause": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Start playing the media if paused, or pause the media if playing",
|
|
||||||
"tags": ["player"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/settings/skipped-artists": {
|
|
||||||
"get": {
|
|
||||||
"summary": "get a list of artists that TIDAL Hi-Fi will skip if skipping is enabled",
|
|
||||||
"tags": ["settings"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "The list book.",
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/StringArray"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"post": {
|
|
||||||
"summary": "Add new artists to the list of skipped artists",
|
|
||||||
"tags": ["settings"],
|
|
||||||
"requestBody": {
|
|
||||||
"required": true,
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/StringArray"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/settings/skipped-artists/delete": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Remove artists from the list of skipped artists",
|
|
||||||
"tags": ["settings"],
|
|
||||||
"requestBody": {
|
|
||||||
"required": true,
|
|
||||||
"content": {
|
|
||||||
"application/json": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/StringArray"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/settings/skipped-artists/current": {
|
|
||||||
"post": {
|
|
||||||
"summary": "Add the current artist to the list of skipped artists",
|
|
||||||
"tags": ["settings"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"delete": {
|
|
||||||
"summary": "Remove the current artist from the list of skipped artists",
|
|
||||||
"tags": ["settings"],
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/image": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Get current image",
|
|
||||||
"tags": ["legacy"],
|
|
||||||
"deprecated": true,
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Current image",
|
|
||||||
"content": {
|
|
||||||
"image/png": {
|
|
||||||
"schema": {
|
|
||||||
"type": "string",
|
|
||||||
"format": "binary"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"404": {
|
|
||||||
"description": "Not found"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/play": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Play the current media",
|
|
||||||
"tags": ["legacy"],
|
|
||||||
"deprecated": true,
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Action performed",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/favorite/toggle": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Add the current media to your favorites, or remove it if its already added to your favorites",
|
|
||||||
"tags": ["legacy"],
|
|
||||||
"deprecated": true,
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/pause": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Pause the current media",
|
|
||||||
"tags": ["legacy"],
|
|
||||||
"deprecated": true,
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/next": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Play the next song",
|
|
||||||
"tags": ["legacy"],
|
|
||||||
"deprecated": true,
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/previous": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Play the previous song",
|
|
||||||
"tags": ["legacy"],
|
|
||||||
"deprecated": true,
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/playpause": {
|
|
||||||
"get": {
|
|
||||||
"summary": "Toggle play/pause",
|
|
||||||
"tags": ["legacy"],
|
|
||||||
"deprecated": true,
|
|
||||||
"responses": {
|
|
||||||
"200": {
|
|
||||||
"description": "Ok",
|
|
||||||
"content": {
|
|
||||||
"text/plain": {
|
|
||||||
"schema": {
|
|
||||||
"$ref": "#/components/schemas/OkResponse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"components": {
|
|
||||||
"schemas": {
|
|
||||||
"MediaInfo": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"title": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"artists": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"album": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"type": "string",
|
|
||||||
"format": "uri"
|
|
||||||
},
|
|
||||||
"playingFrom": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"status": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"url": {
|
|
||||||
"type": "string",
|
|
||||||
"format": "uri"
|
|
||||||
},
|
|
||||||
"current": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"currentInSeconds": {
|
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"duration": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"durationInSeconds": {
|
|
||||||
"type": "integer"
|
|
||||||
},
|
|
||||||
"image": {
|
|
||||||
"type": "string",
|
|
||||||
"format": "uri"
|
|
||||||
},
|
|
||||||
"favorite": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"player": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"status": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"shuffle": {
|
|
||||||
"type": "boolean"
|
|
||||||
},
|
|
||||||
"repeat": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"artist": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"example": {
|
|
||||||
"title": "Sample Title",
|
|
||||||
"artists": "Sample Artist",
|
|
||||||
"album": "Sample Album",
|
|
||||||
"icon": "/path/to/sample/icon.jpg",
|
|
||||||
"playingFrom": "Sample Playlist",
|
|
||||||
"status": "playing",
|
|
||||||
"url": "https://tidal.com/browse/track/sample",
|
|
||||||
"current": "1:23",
|
|
||||||
"currentInSeconds": 83,
|
|
||||||
"duration": "3:45",
|
|
||||||
"durationInSeconds": 225,
|
|
||||||
"image": "https://example.com/sample-image.jpg",
|
|
||||||
"favorite": true,
|
|
||||||
"player": {
|
|
||||||
"status": "playing",
|
|
||||||
"shuffle": true,
|
|
||||||
"repeat": "one"
|
|
||||||
},
|
|
||||||
"artist": "Sample Artist"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"OkResponse": {
|
|
||||||
"type": "string",
|
|
||||||
"example": "OK"
|
|
||||||
},
|
|
||||||
"StringArray": {
|
|
||||||
"type": "array",
|
|
||||||
"items": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"example": ["Artist1", "Artist2"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
{
|
|
||||||
"name": "current",
|
|
||||||
"description": "The current media info API"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "player",
|
|
||||||
"description": "The player control API"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "settings",
|
|
||||||
"description": "The settings management API"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
import { App } from "electron";
|
|
||||||
import { flags } from "../../constants/flags";
|
|
||||||
import { settings } from "../../constants/settings";
|
|
||||||
import { settingsStore } from "../../scripts/settings";
|
|
||||||
import { Logger } from "../logger";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set default Electron flags
|
|
||||||
*/
|
|
||||||
export function setDefaultFlags(app: App) {
|
|
||||||
setFlag(app, "disable-seccomp-filter-sandbox");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Tidal's managed flags from the user settings
|
|
||||||
* @param app
|
|
||||||
*/
|
|
||||||
export function setManagedFlagsFromSettings(app: App) {
|
|
||||||
const flagsFromSettings = settingsStore.get(settings.flags.root);
|
|
||||||
if (flagsFromSettings) {
|
|
||||||
for (const [key, value] of Object.entries(flagsFromSettings)) {
|
|
||||||
if (value) {
|
|
||||||
flags[key].forEach((flag) => {
|
|
||||||
setFlag(app, flag.flag, flag.value);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set a single flag for Electron
|
|
||||||
* @param app app to set it on
|
|
||||||
* @param flag flag name
|
|
||||||
* @param value value to be set for the flag
|
|
||||||
*/
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
function setFlag(app: App, flag: string, value?: any) {
|
|
||||||
Logger.log(`enabling command line option ${flag} with value ${value}`);
|
|
||||||
app.commandLine.appendSwitch(flag, value);
|
|
||||||
}
|
|
@ -1,65 +0,0 @@
|
|||||||
import { PowerSaveBlocker, powerSaveBlocker } from "electron";
|
|
||||||
import { Logger } from "../logger";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Start blocking idle/screen timeouts
|
|
||||||
* @param blocker optional instance of the powerSaveBlocker to use
|
|
||||||
* @returns id of current block
|
|
||||||
*/
|
|
||||||
export const acquireInhibitor = (blocker?: PowerSaveBlocker): number => {
|
|
||||||
const currentBlocker = blocker ?? powerSaveBlocker;
|
|
||||||
const blockId = currentBlocker.start("prevent-app-suspension");
|
|
||||||
Logger.log(`Started preventing app suspension with id: ${blockId}`);
|
|
||||||
return blockId;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check whether there is a blocker active for the current id, if not start it.
|
|
||||||
* @param id id of inhibitor you want to check activity against
|
|
||||||
* @param blocker optional instance of the powerSaveBlocker to use
|
|
||||||
*/
|
|
||||||
export const acquireInhibitorIfInactive = (id: number, blocker?: PowerSaveBlocker): number => {
|
|
||||||
const currentBlocker = blocker ?? powerSaveBlocker;
|
|
||||||
if (!isInhibitorActive(id, currentBlocker)) {
|
|
||||||
return acquireInhibitor();
|
|
||||||
}
|
|
||||||
|
|
||||||
return id;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* stop blocking idle/screen timeouts
|
|
||||||
* @param id id of inhibitor you want to check activity against
|
|
||||||
* @param blocker optional instance of the powerSaveBlocker to use
|
|
||||||
*/
|
|
||||||
export const releaseInhibitor = (id: number, blocker?: PowerSaveBlocker) => {
|
|
||||||
try {
|
|
||||||
const currentBlocker = blocker ?? powerSaveBlocker;
|
|
||||||
currentBlocker.stop(id);
|
|
||||||
Logger.log(`Released inhibitor with id: ${id}`);
|
|
||||||
} catch (error) {
|
|
||||||
Logger.log("Releasing inhibitor failed");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* stop blocking idle/screen timeouts if a inhibitor is active
|
|
||||||
* @param id id of inhibitor you want to check activity against
|
|
||||||
* @param blocker optional instance of the powerSaveBlocker to use
|
|
||||||
*/
|
|
||||||
export const releaseInhibitorIfActive = (id: number, blocker?: PowerSaveBlocker) => {
|
|
||||||
const currentBlocker = blocker ?? powerSaveBlocker;
|
|
||||||
if (isInhibitorActive(id, currentBlocker)) {
|
|
||||||
releaseInhibitor(id, currentBlocker);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* check whether the inhibitor is active
|
|
||||||
* @param id id of inhibitor you want to check activity against
|
|
||||||
* @param blocker optional instance of the powerSaveBlocker to use
|
|
||||||
*/
|
|
||||||
export const isInhibitorActive = (id: number, blocker?: PowerSaveBlocker) => {
|
|
||||||
const currentBlocker = blocker ?? powerSaveBlocker;
|
|
||||||
return currentBlocker.isStarted(id);
|
|
||||||
};
|
|
@ -1,135 +0,0 @@
|
|||||||
import axios from "axios";
|
|
||||||
import Store from "electron-store";
|
|
||||||
import { settings } from "../../constants/settings";
|
|
||||||
import { MediaStatus } from "../../models/mediaStatus";
|
|
||||||
import { settingsStore } from "../../scripts/settings";
|
|
||||||
import { Logger } from "../logger";
|
|
||||||
import { StoreData } from "./models/storeData";
|
|
||||||
|
|
||||||
const ListenBrainzStore = new Store({ name: "listenbrainz" });
|
|
||||||
|
|
||||||
export const ListenBrainzConstants = {
|
|
||||||
oldData: "oldData",
|
|
||||||
};
|
|
||||||
|
|
||||||
export class ListenBrainz {
|
|
||||||
/**
|
|
||||||
* Create the object to store old information in the Store :)
|
|
||||||
* @param title
|
|
||||||
* @param artists
|
|
||||||
* @param duration
|
|
||||||
* @returns data passed along in an object + a "listenedAt" key with the current time
|
|
||||||
*/
|
|
||||||
private static constructStoreData(title: string, artists: string, duration: number): StoreData {
|
|
||||||
return {
|
|
||||||
listenedAt: Math.floor(new Date().getTime() / 1000),
|
|
||||||
title,
|
|
||||||
artists,
|
|
||||||
duration,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Call the ListenBrainz API and create playing now payload and scrobble old song
|
|
||||||
* @param title
|
|
||||||
* @param artists
|
|
||||||
* @param status
|
|
||||||
* @param duration
|
|
||||||
*/
|
|
||||||
public static async scrobble(
|
|
||||||
title: string,
|
|
||||||
artists: string,
|
|
||||||
status: string,
|
|
||||||
duration: number
|
|
||||||
): Promise<void> {
|
|
||||||
try {
|
|
||||||
if (status === MediaStatus.paused) {
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
// Fetches the oldData required for scrobbling and proceeds to construct a playing_now data payload for the Playing Now area
|
|
||||||
const oldData = ListenBrainzStore.get(ListenBrainzConstants.oldData) as StoreData;
|
|
||||||
const tidalUrl =
|
|
||||||
settingsStore.get<string, string>(settings.advanced.tidalUrl) ||
|
|
||||||
"https://listen.tidal.com";
|
|
||||||
const playing_data = {
|
|
||||||
listen_type: "playing_now",
|
|
||||||
payload: [
|
|
||||||
{
|
|
||||||
track_metadata: {
|
|
||||||
additional_info: {
|
|
||||||
media_player: "Tidal Hi-Fi",
|
|
||||||
submission_client: "Tidal Hi-Fi",
|
|
||||||
music_service: "tidal.com",
|
|
||||||
duration: duration,
|
|
||||||
},
|
|
||||||
artist_name: artists,
|
|
||||||
track_name: title,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
await axios.post(
|
|
||||||
`${settingsStore.get<string, string>(settings.ListenBrainz.api)}/1/submit-listens`,
|
|
||||||
playing_data,
|
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: `Token ${settingsStore.get<string, string>(
|
|
||||||
settings.ListenBrainz.token
|
|
||||||
)}`,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
|
||||||
if (!oldData) {
|
|
||||||
ListenBrainzStore.set(
|
|
||||||
ListenBrainzConstants.oldData,
|
|
||||||
this.constructStoreData(title, artists, duration)
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
if (oldData.title !== title) {
|
|
||||||
// This constructs the data required to scrobble the data after the song finishes
|
|
||||||
const scrobble_data = {
|
|
||||||
listen_type: "single",
|
|
||||||
payload: [
|
|
||||||
{
|
|
||||||
listened_at: oldData.listenedAt,
|
|
||||||
track_metadata: {
|
|
||||||
additional_info: {
|
|
||||||
media_player: "Tidal Hi-Fi",
|
|
||||||
submission_client: "Tidal Hi-Fi",
|
|
||||||
music_service: tidalUrl,
|
|
||||||
duration: oldData.duration,
|
|
||||||
},
|
|
||||||
artist_name: oldData.artists,
|
|
||||||
track_name: oldData.title,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
await axios.post(
|
|
||||||
`${settingsStore.get<string, string>(settings.ListenBrainz.api)}/1/submit-listens`,
|
|
||||||
scrobble_data,
|
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: `Token ${settingsStore.get<string, string>(
|
|
||||||
settings.ListenBrainz.token
|
|
||||||
)}`,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
|
||||||
ListenBrainzStore.set(
|
|
||||||
ListenBrainzConstants.oldData,
|
|
||||||
this.constructStoreData(title, artists, duration)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
Logger.log(JSON.stringify(error));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { ListenBrainzStore };
|
|
@ -1,9 +0,0 @@
|
|||||||
/**
|
|
||||||
* Data saved for ListenBrainz
|
|
||||||
*/
|
|
||||||
export interface StoreData {
|
|
||||||
listenedAt: number;
|
|
||||||
title: string;
|
|
||||||
artists: string;
|
|
||||||
duration: number;
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
import { IpcMain, ipcMain, IpcMainEvent, ipcRenderer } from "electron";
|
|
||||||
import { globalEvents } from "../constants/globalEvents";
|
|
||||||
|
|
||||||
export class Logger {
|
|
||||||
/**
|
|
||||||
* Subscribe to watch for logs from the IPC client
|
|
||||||
* @param ipcMain main thread IPC client so we can subscribe to events
|
|
||||||
*/
|
|
||||||
public static watch(ipcMain: IpcMain) {
|
|
||||||
ipcMain.on(
|
|
||||||
globalEvents.log,
|
|
||||||
(event: IpcMainEvent | { content: string; message: string }, message) => {
|
|
||||||
const { content, object } = message ?? event;
|
|
||||||
this.logToSTDOut(content, object);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Log content to STDOut
|
|
||||||
* @param content
|
|
||||||
* @param object js(on) object that will be prettyPrinted
|
|
||||||
*/
|
|
||||||
public static log(content: string, object: object = {}) {
|
|
||||||
if (ipcRenderer) {
|
|
||||||
ipcRenderer.send(globalEvents.log, { content, object });
|
|
||||||
} else {
|
|
||||||
ipcMain.emit(globalEvents.log, { content, object });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log content to STDOut and use the provided alert function to alert
|
|
||||||
* @param content
|
|
||||||
* @param object js(on) object that will be prettyPrinted
|
|
||||||
*/
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
public static alert(content: string, object: any = {}, alert?: (msg: string) => void) {
|
|
||||||
Logger.log(content, object);
|
|
||||||
if (alert) {
|
|
||||||
alert(`${content} \n\nwith details: \n${JSON.stringify(object, null, 2)}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log to STDOut
|
|
||||||
* @param content
|
|
||||||
* @param object
|
|
||||||
*/
|
|
||||||
private static logToSTDOut(content: string, object = {}) {
|
|
||||||
console.log(content, Object.keys(object).length > 0 ? JSON.stringify(object, null, 2) : "");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
export class SharingService {
|
|
||||||
/**
|
|
||||||
* Retrieve the universal link given a regular track link
|
|
||||||
* @param currentUrl
|
|
||||||
* @returns
|
|
||||||
*/
|
|
||||||
public static getUniversalLink(currentUrl: string): string {
|
|
||||||
return `${currentUrl}?u`;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
import fs from "fs";
|
|
||||||
import { settings } from "../../constants/settings";
|
|
||||||
import { settingsStore } from "../../scripts/settings";
|
|
||||||
import { Logger } from "../logger";
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
export function addCustomCss(app: any) {
|
|
||||||
window.addEventListener("DOMContentLoaded", () => {
|
|
||||||
const selectedTheme = settingsStore.get<string, string>(settings.theme);
|
|
||||||
if (selectedTheme !== "none") {
|
|
||||||
const userThemePath = `${app.getPath("userData")}/themes/${selectedTheme}`;
|
|
||||||
const resourcesThemePath = `${process.resourcesPath}/${selectedTheme}`;
|
|
||||||
const themeFile = fs.existsSync(userThemePath) ? userThemePath : resourcesThemePath;
|
|
||||||
fs.readFile(themeFile, "utf-8", (err, data) => {
|
|
||||||
if (err) {
|
|
||||||
Logger.alert("An error ocurred reading the theme file.", err, alert);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const themeStyle = document.createElement("style");
|
|
||||||
themeStyle.innerHTML = data;
|
|
||||||
document.head.appendChild(themeStyle);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// read customCSS (it will override the theme)
|
|
||||||
const style = document.createElement("style");
|
|
||||||
style.innerHTML = settingsStore.get<string, string[]>(settings.customCSS).join("\n");
|
|
||||||
document.head.appendChild(style);
|
|
||||||
});
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
/**
|
|
||||||
* Convert a HH:MM:SS string (or variants such as MM:SS or SS) to plain seconds
|
|
||||||
* @param duration in HH:MM:SS format
|
|
||||||
* @returns number of seconds in duration
|
|
||||||
*/
|
|
||||||
export const convertDurationToSeconds = (duration: string) => {
|
|
||||||
return duration
|
|
||||||
.split(":")
|
|
||||||
.reverse()
|
|
||||||
.map((val) => Number(val))
|
|
||||||
.reduce((previous, current, index) => {
|
|
||||||
return index === 0 ? current : previous + current * Math.pow(60, index);
|
|
||||||
}, 0);
|
|
||||||
};
|
|
66
src/main.js
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
const { app, BrowserWindow } = require("electron");
|
||||||
|
const path = require("path");
|
||||||
|
const tidalUrl = "https://listen.tidal.com";
|
||||||
|
let mainWindow;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable live reload in development builds
|
||||||
|
*/
|
||||||
|
if (!app.isPackaged) {
|
||||||
|
require("electron-reload")(`${__dirname}`, {
|
||||||
|
electron: require(`${__dirname}/../node_modules/electron`),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function createWindow(options = {}) {
|
||||||
|
// Create the browser window.
|
||||||
|
mainWindow = new BrowserWindow({
|
||||||
|
x: options.x,
|
||||||
|
y: options.y,
|
||||||
|
width: 1024,
|
||||||
|
height: 800,
|
||||||
|
backgroundColor: options.backgroundColor,
|
||||||
|
webPreferences: {
|
||||||
|
affinity: "window",
|
||||||
|
preload: path.join(__dirname, "preload.js"),
|
||||||
|
plugins: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
mainWindow.setMenuBarVisibility(false);
|
||||||
|
|
||||||
|
// load the Tidal website
|
||||||
|
mainWindow.loadURL(tidalUrl);
|
||||||
|
|
||||||
|
// run stuff after first load
|
||||||
|
mainWindow.webContents.once("did-finish-load", () => {});
|
||||||
|
|
||||||
|
// Emitted when the window is closed.
|
||||||
|
mainWindow.on("closed", function() {
|
||||||
|
mainWindow = null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function addGlobalShortcuts() {
|
||||||
|
// globalShortcut.register("Control+A", () => {
|
||||||
|
// dialog.showErrorBox("test", "test");
|
||||||
|
// // mainWindow.webContents.send("getPlayInfo");
|
||||||
|
// });
|
||||||
|
}
|
||||||
|
|
||||||
|
// This method will be called when Electron has finished
|
||||||
|
// initialization and is ready to create browser windows.
|
||||||
|
// Some APIs can only be used after this event occurs.
|
||||||
|
app.on("ready", () => {
|
||||||
|
// window with white backround
|
||||||
|
createWindow();
|
||||||
|
addGlobalShortcuts();
|
||||||
|
});
|
||||||
|
|
||||||
|
app.on("activate", function() {
|
||||||
|
// On OS X it's common to re-create a window in the app when the
|
||||||
|
// dock icon is clicked and there are no other windows open.
|
||||||
|
if (mainWindow === null) {
|
||||||
|
createWindow();
|
||||||
|
}
|
||||||
|
});
|
261
src/main.ts
@ -1,261 +0,0 @@
|
|||||||
import { enable, initialize } from "@electron/remote/main";
|
|
||||||
import { BrowserWindow, app, components, ipcMain, session } from "electron";
|
|
||||||
import path from "path";
|
|
||||||
import { globalEvents } from "./constants/globalEvents";
|
|
||||||
import { settings } from "./constants/settings";
|
|
||||||
import { startApi } from "./features/api";
|
|
||||||
import { setDefaultFlags, setManagedFlagsFromSettings } from "./features/flags/flags";
|
|
||||||
import {
|
|
||||||
acquireInhibitorIfInactive,
|
|
||||||
releaseInhibitorIfActive,
|
|
||||||
} from "./features/idleInhibitor/idleInhibitor";
|
|
||||||
import { Logger } from "./features/logger";
|
|
||||||
import { SharingService } from "./features/sharingService/sharingService";
|
|
||||||
import { MediaInfo } from "./models/mediaInfo";
|
|
||||||
import { MediaStatus } from "./models/mediaStatus";
|
|
||||||
import { initRPC, rpc, unRPC } from "./scripts/discord";
|
|
||||||
import { updateMediaInfo } from "./scripts/mediaInfo";
|
|
||||||
import { addMenu } from "./scripts/menu";
|
|
||||||
import {
|
|
||||||
closeSettingsWindow,
|
|
||||||
createSettingsWindow,
|
|
||||||
hideSettingsWindow,
|
|
||||||
settingsStore,
|
|
||||||
showSettingsWindow,
|
|
||||||
} from "./scripts/settings";
|
|
||||||
import { addTray, refreshTray } from "./scripts/tray";
|
|
||||||
let mainInhibitorId = -1;
|
|
||||||
|
|
||||||
let mainWindow: BrowserWindow;
|
|
||||||
const icon = path.join(__dirname, "../assets/icon.png");
|
|
||||||
const PROTOCOL_PREFIX = "tidal";
|
|
||||||
const windowPreferences = {
|
|
||||||
sandbox: false,
|
|
||||||
plugins: true,
|
|
||||||
devTools: true, // I like tinkering, others might too
|
|
||||||
};
|
|
||||||
|
|
||||||
setDefaultFlags(app);
|
|
||||||
setManagedFlagsFromSettings(app);
|
|
||||||
|
|
||||||
const tidalUrl =
|
|
||||||
settingsStore.get<string, string>(settings.advanced.tidalUrl) || "https://listen.tidal.com";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update the menuBarVisibility according to the store value
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
function syncMenuBarWithStore() {
|
|
||||||
const fixedMenuBar = !!settingsStore.get(settings.menuBar);
|
|
||||||
|
|
||||||
mainWindow.autoHideMenuBar = !fixedMenuBar;
|
|
||||||
mainWindow.setMenuBarVisibility(fixedMenuBar);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @returns true/false based on whether the current window is the main window
|
|
||||||
*/
|
|
||||||
function isMainInstance() {
|
|
||||||
return app.requestSingleInstanceLock();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @returns true/false based on whether multiple instances are allowed
|
|
||||||
*/
|
|
||||||
function isMultipleInstancesAllowed() {
|
|
||||||
return !settingsStore.get(settings.singleInstance);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param args the arguments passed to the app
|
|
||||||
* @returns the custom protocol url if it exists, otherwise null
|
|
||||||
*/
|
|
||||||
function getCustomProtocolUrl(args: string[]) {
|
|
||||||
const customProtocolArg = args.find((arg) => arg.startsWith(PROTOCOL_PREFIX));
|
|
||||||
|
|
||||||
if (!customProtocolArg) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return tidalUrl + "/" + customProtocolArg.substring(PROTOCOL_PREFIX.length + 3);
|
|
||||||
}
|
|
||||||
|
|
||||||
function createWindow(options = { x: 0, y: 0, backgroundColor: "white" }) {
|
|
||||||
// Create the browser window.
|
|
||||||
mainWindow = new BrowserWindow({
|
|
||||||
x: options.x,
|
|
||||||
y: options.y,
|
|
||||||
width: settingsStore?.get(settings.windowBounds.width),
|
|
||||||
height: settingsStore?.get(settings.windowBounds.height),
|
|
||||||
icon,
|
|
||||||
backgroundColor: options.backgroundColor,
|
|
||||||
autoHideMenuBar: true,
|
|
||||||
webPreferences: {
|
|
||||||
...windowPreferences,
|
|
||||||
...{
|
|
||||||
preload: path.join(__dirname, "preload.js"),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
enable(mainWindow.webContents);
|
|
||||||
registerHttpProtocols();
|
|
||||||
syncMenuBarWithStore();
|
|
||||||
|
|
||||||
// find the custom protocol argument
|
|
||||||
const customProtocolUrl = getCustomProtocolUrl(process.argv);
|
|
||||||
|
|
||||||
if (customProtocolUrl) {
|
|
||||||
// load the url received from the custom protocol
|
|
||||||
mainWindow.loadURL(customProtocolUrl);
|
|
||||||
} else {
|
|
||||||
// load the Tidal website
|
|
||||||
mainWindow.loadURL(tidalUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (settingsStore.get(settings.disableBackgroundThrottle)) {
|
|
||||||
// prevent setInterval lag
|
|
||||||
mainWindow.webContents.setBackgroundThrottling(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
mainWindow.on("close", function (event: CloseEvent) {
|
|
||||||
if (settingsStore.get(settings.minimizeOnClose)) {
|
|
||||||
event.preventDefault();
|
|
||||||
mainWindow.hide();
|
|
||||||
refreshTray(mainWindow);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Emitted when the window is closed.
|
|
||||||
mainWindow.on("closed", function () {
|
|
||||||
releaseInhibitorIfActive(mainInhibitorId);
|
|
||||||
closeSettingsWindow();
|
|
||||||
app.quit();
|
|
||||||
});
|
|
||||||
mainWindow.on("resize", () => {
|
|
||||||
const { width, height } = mainWindow.getBounds();
|
|
||||||
settingsStore.set(settings.windowBounds.root, { width, height });
|
|
||||||
});
|
|
||||||
mainWindow.webContents.setWindowOpenHandler(() => {
|
|
||||||
return {
|
|
||||||
action: "allow",
|
|
||||||
overrideBrowserWindowOptions: {
|
|
||||||
webPreferences: {
|
|
||||||
sandbox: false,
|
|
||||||
plugins: true,
|
|
||||||
devTools: true, // I like tinkering, others might too
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function registerHttpProtocols() {
|
|
||||||
if (!app.isDefaultProtocolClient(PROTOCOL_PREFIX)) {
|
|
||||||
app.setAsDefaultProtocolClient(PROTOCOL_PREFIX);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// This method will be called when Electron has finished
|
|
||||||
// initialization and is ready to create browser windows.
|
|
||||||
// Some APIs can only be used after this event occurs.
|
|
||||||
app.on("ready", async () => {
|
|
||||||
// check if the app is the main instance and multiple instances are not allowed
|
|
||||||
if (isMainInstance() && !isMultipleInstancesAllowed()) {
|
|
||||||
app.on("second-instance", (_, commandLine) => {
|
|
||||||
const customProtocolUrl = getCustomProtocolUrl(commandLine);
|
|
||||||
|
|
||||||
if (customProtocolUrl) {
|
|
||||||
mainWindow.loadURL(customProtocolUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mainWindow) {
|
|
||||||
if (mainWindow.isMinimized()) mainWindow.restore();
|
|
||||||
mainWindow.focus();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isMainInstance() || isMultipleInstancesAllowed()) {
|
|
||||||
await components.whenReady();
|
|
||||||
initialize();
|
|
||||||
|
|
||||||
// Adblock
|
|
||||||
if (settingsStore.get(settings.adBlock)) {
|
|
||||||
const filter = { urls: ["https://listen.tidal.com/*"] };
|
|
||||||
session.defaultSession.webRequest.onBeforeRequest(filter, (details, callback) => {
|
|
||||||
if (details.url.match(/\/users\/.*\d\?country/)) callback({ cancel: true });
|
|
||||||
else callback({ cancel: false });
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
Logger.log("components ready:", components.status());
|
|
||||||
|
|
||||||
createWindow();
|
|
||||||
addMenu(mainWindow);
|
|
||||||
createSettingsWindow();
|
|
||||||
if (settingsStore.get(settings.trayIcon)) {
|
|
||||||
addTray(mainWindow, { icon });
|
|
||||||
refreshTray(mainWindow);
|
|
||||||
}
|
|
||||||
settingsStore.get(settings.api) && startApi(mainWindow);
|
|
||||||
settingsStore.get(settings.enableDiscord) && initRPC();
|
|
||||||
} else {
|
|
||||||
app.quit();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
app.on("activate", function () {
|
|
||||||
// On OS X it's common to re-create a window in the app when the
|
|
||||||
// dock icon is clicked and there are no other windows open.
|
|
||||||
if (mainWindow === null) {
|
|
||||||
createWindow();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
app.on("browser-window-created", (_, window) => {
|
|
||||||
enable(window.webContents);
|
|
||||||
});
|
|
||||||
|
|
||||||
// IPC
|
|
||||||
ipcMain.on(globalEvents.updateInfo, (_event, arg: MediaInfo) => {
|
|
||||||
updateMediaInfo(arg);
|
|
||||||
if (arg.status === MediaStatus.playing) {
|
|
||||||
mainInhibitorId = acquireInhibitorIfInactive(mainInhibitorId);
|
|
||||||
} else {
|
|
||||||
releaseInhibitorIfActive(mainInhibitorId);
|
|
||||||
mainInhibitorId = -1;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
ipcMain.on(globalEvents.hideSettings, () => {
|
|
||||||
hideSettingsWindow();
|
|
||||||
});
|
|
||||||
ipcMain.on(globalEvents.showSettings, () => {
|
|
||||||
showSettingsWindow();
|
|
||||||
});
|
|
||||||
|
|
||||||
ipcMain.on(globalEvents.refreshMenuBar, () => {
|
|
||||||
syncMenuBarWithStore();
|
|
||||||
});
|
|
||||||
|
|
||||||
ipcMain.on(globalEvents.storeChanged, () => {
|
|
||||||
syncMenuBarWithStore();
|
|
||||||
|
|
||||||
if (settingsStore.get(settings.enableDiscord) && !rpc) {
|
|
||||||
initRPC();
|
|
||||||
} else if (!settingsStore.get(settings.enableDiscord) && rpc) {
|
|
||||||
unRPC();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
ipcMain.on(globalEvents.error, (event) => {
|
|
||||||
console.log(event);
|
|
||||||
});
|
|
||||||
|
|
||||||
ipcMain.handle(globalEvents.getUniversalLink, async (event, url) => {
|
|
||||||
return SharingService.getUniversalLink(url);
|
|
||||||
});
|
|
||||||
|
|
||||||
Logger.watch(ipcMain);
|
|
@ -1,19 +0,0 @@
|
|||||||
import { MediaPlayerInfo } from "./mediaPlayerInfo";
|
|
||||||
import { MediaStatus } from "./mediaStatus";
|
|
||||||
|
|
||||||
export interface MediaInfo {
|
|
||||||
title: string;
|
|
||||||
artists: string;
|
|
||||||
album: string;
|
|
||||||
icon: string;
|
|
||||||
status: MediaStatus;
|
|
||||||
url: string;
|
|
||||||
playingFrom: string;
|
|
||||||
current: string;
|
|
||||||
currentInSeconds?: number;
|
|
||||||
duration: string;
|
|
||||||
durationInSeconds?: number;
|
|
||||||
image: string;
|
|
||||||
favorite: boolean;
|
|
||||||
player?: MediaPlayerInfo;
|
|
||||||
}
|
|
@ -1,8 +0,0 @@
|
|||||||
import { RepeatState } from "./repeatState";
|
|
||||||
import { MediaStatus } from "./mediaStatus";
|
|
||||||
|
|
||||||
export interface MediaPlayerInfo {
|
|
||||||
status: MediaStatus;
|
|
||||||
shuffle: boolean;
|
|
||||||
repeat: RepeatState;
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
export enum MediaStatus {
|
|
||||||
playing = "playing",
|
|
||||||
paused = "paused",
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
export enum RepeatState {
|
|
||||||
off = "off",
|
|
||||||
all = "all",
|
|
||||||
single = "single",
|
|
||||||
}
|
|