├── README.md ├── application.properties ├── pom.xml └── src ├── main └── kotlin │ └── com │ └── test │ ├── Application.kt │ ├── RestController.kt │ ├── SiteController.kt │ ├── TrackMatcher.kt │ ├── controller │ ├── RestController.kt │ └── SiteController.kt │ ├── model │ ├── LocalSongRepository.kt │ ├── SpotifyApiWrapper.kt │ └── objects │ │ ├── FoundTrack.kt │ │ ├── PendingTrack.kt │ │ ├── Song.kt │ │ └── SpotifyTrack.kt │ └── util │ └── TryOrNull.kt ├── res ├── application.properties └── static │ └── index.html └── test └── kotlin └── com └── test └── HelloTest.kt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/README.md -------------------------------------------------------------------------------- /application.properties: -------------------------------------------------------------------------------- 1 | library_folder = D:\\Users\\michael\\Desktop\\music -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/kotlin/com/test/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/Application.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/RestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/RestController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/SiteController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/SiteController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/TrackMatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/TrackMatcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/controller/RestController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/controller/RestController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/controller/SiteController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/controller/SiteController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/model/LocalSongRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/model/LocalSongRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/model/SpotifyApiWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/model/SpotifyApiWrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/model/objects/FoundTrack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/model/objects/FoundTrack.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/model/objects/PendingTrack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/model/objects/PendingTrack.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/model/objects/Song.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/model/objects/Song.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/model/objects/SpotifyTrack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/model/objects/SpotifyTrack.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/test/util/TryOrNull.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/main/kotlin/com/test/util/TryOrNull.kt -------------------------------------------------------------------------------- /src/res/application.properties: -------------------------------------------------------------------------------- 1 | spring.http.converters.preferred-json-mapper=gson -------------------------------------------------------------------------------- /src/res/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/res/static/index.html -------------------------------------------------------------------------------- /src/test/kotlin/com/test/HelloTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jolt151/spotify2m3u/HEAD/src/test/kotlin/com/test/HelloTest.kt --------------------------------------------------------------------------------