No description
Find a file
2025-02-14 06:26:16 +10:00
.gitignore Add spotify auth handling and route testing, begin DB work 2025-02-12 03:25:08 +10:00
auth.go Cleanup API responses and add better comments 2025-02-14 05:54:45 +10:00
auth_test.go Run go fmt 2025-02-12 14:31:19 +10:00
database.go Cleanup API responses and add better comments 2025-02-14 05:54:45 +10:00
Dockerfile Add dockerfile, update ping route to alive route, add documentation 2025-02-12 11:55:56 +10:00
go.mod Add dockerfile, update ping route to alive route, add documentation 2025-02-12 11:55:56 +10:00
go.sum Add spotify auth handling and route testing, begin DB work 2025-02-12 03:25:08 +10:00
main.go Fix typo 2025-02-12 14:52:11 +10:00
README.md Update README with docker instructions 2025-02-12 12:00:02 +10:00
routes.go Add documentation around DB lookup semantics 2025-02-14 06:26:16 +10:00
routes_test.go Run go fmt 2025-02-12 14:31:19 +10:00
utils.go Run go fmt 2025-02-12 14:31:19 +10:00

Basic spotify API in golang

This API supports simple artist read operations for spotify data, as well as using a simple caching database and handling client authentication automatically.

Setup

After compiling the binary, or when executing via go run, just be sure to set the following environment variables to enable access to Spotify's API.

SPOTIFY_ID=<your spotify client ID>
SPOTIFY_TOKEN=<your spotify token>

Example execution using the linux command line: SPOTIFY_ID=myspotifyID SPOTIFY_TOKEN=myspotifytoken ./gomusic

Alternatively you can use go run too: SPOTIFY_ID=myspotifyID SPOTIFY_TOKEN=myspotifytoken go run .

This project has been built with docker support, and a docker image can be built using the Dockerfile provided. Please note that the above environment variables will still need to be passed into the container for execution to work correctly.

Testing

This application comes with a complete test suite, it can be run using the standard go test system. When running tests you are required to provide the same credentials as when running the server normally.

For example: SPOTIFY_ID=myspotifyID SPOTIFY_TOKEN=myspotifytoken go test .

Technical Choices

This project is built using the Gin framework, for easy and consistent request contexts, as well as easy to expand middleware support. For database interactions it uses the gorm library, to allow for advanced SQL features and server agnostic support.

This API currently uses sqlite as the database for simplicity, but switching to postgres or mysql is easy without any loss of functionality or change in database calls.