16 Commits

Author SHA1 Message Date
aledjones 637b6b4d8c .github/workflows/go.yaml aktualisiert
Build / build (amd64, linux) (pull_request) Successful in 2m17s
Build / build (arm64, darwin) (pull_request) Successful in 3m40s
Build / build (amd64, darwin) (pull_request) Successful in 3m47s
Build / build (amd64, windows) (pull_request) Successful in 3m46s
Build / build (arm64, linux) (pull_request) Successful in 1m56s
Build / build (arm64, windows) (pull_request) Successful in 56s
2024-06-04 17:54:31 +02:00
aledjones a5d37e7844 .github/workflows/go.yaml aktualisiert
Build / build (amd64, linux) (pull_request) Has been cancelled
Build / build (amd64, windows) (pull_request) Has been cancelled
Build / build (arm64, darwin) (pull_request) Has been cancelled
Build / build (amd64, darwin) (pull_request) Has been cancelled
Build / build (arm64, linux) (pull_request) Has been cancelled
Build / build (arm64, windows) (pull_request) Has been cancelled
2024-06-04 17:37:52 +02:00
aledjones e71040b838 Merge pull request 'README.md aktualisiert' (#1) from aledjones-patch-1 into main
Build / build (amd64, linux) (push) Successful in 1m56s
Build / build (arm64, darwin) (push) Successful in 3m15s
Build / build (amd64, darwin) (push) Successful in 3m23s
Build / build (amd64, windows) (push) Successful in 3m21s
Build / build (arm64, linux) (push) Successful in 1m54s
Build / build (arm64, windows) (push) Successful in 57s
Reviewed-on: #1
2024-06-01 16:43:05 +02:00
aledjones 296ad3ddfe .github/workflows/go.yaml aktualisiert
Build / build (amd64, darwin) (pull_request) Successful in 39s
Build / build (amd64, linux) (pull_request) Successful in 22s
Build / build (amd64, windows) (pull_request) Successful in 42s
Build / build (arm64, darwin) (pull_request) Successful in 41s
Build / build (arm64, linux) (pull_request) Successful in 39s
Build / build (arm64, windows) (pull_request) Successful in 41s
2024-06-01 16:37:40 +02:00
aledjones c4b571c91b README.md aktualisiert
Build / build (amd64, darwin) (pull_request) Successful in 41s
Build / build (amd64, linux) (pull_request) Successful in 22s
Build / build (amd64, windows) (pull_request) Successful in 41s
Build / build (arm64, darwin) (pull_request) Successful in 39s
Build / build (arm64, linux) (pull_request) Successful in 37s
Build / build (arm64, windows) (pull_request) Successful in 37s
Umstellung auf eigene Gitea-Instanz
2024-06-01 16:28:37 +02:00
aledjones 2cf4799887 Update go.yaml 2023-03-10 08:18:52 +01:00
aledjones 9e8e6d696d Update README.md 2023-03-10 08:17:25 +01:00
Nico Wunder 8b0cc231d0 1 feature request compare existing songs by (#3)
* adding vscode-ish .gitignore file

* check to compare exact IDs of Tracks while add #1

---------

Co-authored-by: Nico Wunder <n.wunder@onacy.de>
2023-03-07 11:19:52 +01:00
aledjones 799cc904a8 Update README.md 2023-03-07 11:19:06 +01:00
aledjones 45f23d0463 Update go.yaml 2023-03-07 11:17:06 +01:00
aledjones 8280162a04 Merge pull request #6 from aledjones/2-github-actions
Adding go workflow for GitHub Actions
2023-03-07 11:10:59 +01:00
aledjones 3d480acc9f Update go.yaml 2023-03-07 11:09:36 +01:00
aledjones 193aa655f0 Update go.yaml 2023-03-07 10:58:34 +01:00
aledjones 80fc1d135e Update go.yaml 2023-03-07 10:53:26 +01:00
aledjones 815a66eb8c Update go.yaml
adds artifact upload
adds bin/ artifact directory
2023-03-07 10:50:17 +01:00
aledjones c3d49e3473 Create go.yaml 2023-03-07 10:43:24 +01:00
4 changed files with 110 additions and 20 deletions
+37
View File
@@ -0,0 +1,37 @@
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: ["darwin","linux","windows"]
arch: ["amd64","arm64"]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Install dependencies
run: |
go get .
- name: Build
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -o spotigram_${{ matrix.os }}_${{ matrix.arch }} -v main.go
- name: upload artifacts
uses: actions/upload-artifact@v3.1.2
with:
name: spotigram_${{ matrix.os }}_${{ matrix.arch }}
path: spotigram_${{ matrix.os }}_${{ matrix.arch }}
retention-days: 7
+1
View File
@@ -1,2 +1,3 @@
bin/ bin/
.idea .idea
.vscode/launch.json
+2
View File
@@ -3,6 +3,8 @@ Spotigram
_Wenns' gut werden muss_ _Wenns' gut werden muss_
[![build status](https://git.jonasmoeller.de/aledjones/spotigram/actions/workflows/go.yaml/badge.svg)](https://git.jonasmoeller.de/aledjones/spotigram)
## Was ist Spotigram? ## Was ist Spotigram?
Spotigram ist eine `/command` basierte Bridge zwischen Telegram und Spotify. Spotigram ist eine `/command` basierte Bridge zwischen Telegram und Spotify.
+54 -4
View File
@@ -24,14 +24,15 @@ package cmd
import ( import (
"context" "context"
"fmt" "fmt"
"log"
"strings"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5" tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/spf13/viper" "github.com/spf13/viper"
"github.com/zmb3/spotify/v2" "github.com/zmb3/spotify/v2"
spotifyauth "github.com/zmb3/spotify/v2/auth" spotifyauth "github.com/zmb3/spotify/v2/auth"
"golang.org/x/oauth2" "golang.org/x/oauth2"
"log"
"strings"
) )
// telegramBotCmd represents the telegramBot command // telegramBotCmd represents the telegramBot command
@@ -104,10 +105,49 @@ It is not planned to extend this in the future.`,
cobra.CheckErr(err) cobra.CheckErr(err)
if results != nil { if results != nil {
track := results.Tracks.Tracks[0]
playlist, err := client.GetPlaylist(ctx, spotify.ID(viper.GetString("spotify_playlist_id"))) playlist, err := client.GetPlaylist(ctx, spotify.ID(viper.GetString("spotify_playlist_id")))
cobra.CheckErr(err) cobra.CheckErr(err)
tracks, err := client.GetPlaylistItems(ctx, playlist.ID)
cobra.CheckErr(err)
trackIDs := make([]spotify.ID, 0, len(tracks.Items))
for page := 1; ; page++ {
for _, track := range tracks.Items {
trackIDs = append(trackIDs, track.Track.Track.ID)
}
err = client.NextPage(ctx, tracks)
if err == spotify.ErrNoMorePages {
break
}
if err != nil {
cobra.CheckErr(err)
}
}
if contains(trackIDs, results.Tracks.Tracks[0].ID) {
track := results.Tracks.Tracks[0]
msg.Text = fmt.Sprintf("⛔ Ooops, dieser Titel ist schon in der Playlist!\n Ich habe den Titel <pre>%s</pre> von <pre>%s</pre> nicht ERNEUT zur Playlist <pre>%s</pre> hinzugefügt.",
track.Name,
track.Artists[0].Name,
playlist.Name,
)
msg.ParseMode = "HTML"
_, err = bot.Send(msg)
cobra.CheckErr(err)
fmt.Printf("Declined adding duplicate track: %s by %s",
track.Name,
track.Artists[0].Name)
} else {
track := results.Tracks.Tracks[0]
addTrackResponse, err := client.AddTracksToPlaylist(ctx, addTrackResponse, err := client.AddTracksToPlaylist(ctx,
playlist.ID, playlist.ID,
results.Tracks.Tracks[0].ID) results.Tracks.Tracks[0].ID)
@@ -126,8 +166,9 @@ It is not planned to extend this in the future.`,
track.Name, track.Name,
track.Artists[0].Name, track.Artists[0].Name,
addTrackResponse) addTrackResponse)
} }
}
case "rofl": case "rofl":
msg.Text = "🤣" msg.Text = "🤣"
_, err = bot.Send(msg) _, err = bot.Send(msg)
@@ -156,3 +197,12 @@ func init() {
// is called directly, e.g.: // is called directly, e.g.:
// telegramBotCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") // telegramBotCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
} }
func contains(s []spotify.ID, e spotify.ID) bool {
for _, a := range s {
if a == e {
return true
}
}
return false
}