From a39f7626758a7d26c1bc419b1eaa46cbfee5ecaa Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Wed, 25 Jun 2008 14:49:58 +0200 Subject: piano/client: Initial ban-for-a-month implementation Use it when you're tired of hearing a single song again and again... --- libpiano/src/main.c | 33 +++++++++++++++++++++++++++++++++ libpiano/src/piano.h | 3 ++- libpiano/src/xml.c | 2 ++ 3 files changed, 37 insertions(+), 1 deletion(-) (limited to 'libpiano/src') diff --git a/libpiano/src/main.c b/libpiano/src/main.c index 7cb9ad4..29af6e0 100644 --- a/libpiano/src/main.c +++ b/libpiano/src/main.c @@ -140,6 +140,7 @@ void PianoDestroyPlaylist (PianoHandle_t *ph) { PianoFree (curSong->musicId, 0); PianoFree (curSong->title, 0); PianoFree (curSong->userSeed, 0); + PianoFree (curSong->identity, 0); lastSong = curSong; curSong = curSong->next; PianoFree (lastSong, sizeof (*lastSong)); @@ -563,3 +564,35 @@ PianoReturn_t PianoStationAddMusic (PianoHandle_t *ph, return ret; } + +/* ban a song temporary (for one month) + * @param piano handle + * @param song to be banned + * @return _OK or error + */ +PianoReturn_t PianoSongTired (PianoHandle_t *ph, PianoSong_t *song) { + char xmlSendBuf[10000], url[PIANO_URL_BUFFER_SIZE]; + char *requestStr, *retStr; + PianoReturn_t ret; + + snprintf (xmlSendBuf, sizeof (xmlSendBuf), "" + "listener.addTiredSong" + "%li" + "%s" + "%s" + "", time (NULL), ph->user.authToken, + song->identity); + requestStr = PianoEncryptString (xmlSendBuf); + + snprintf (url, sizeof (url), PIANO_RPC_URL "rid=%s&lid=%s&" + "method=addTiredSong&arg1=%s", ph->routeId, ph->user.listenerId, + song->identity); + + PianoHttpPost (ph->curlHandle, url, requestStr, &retStr); + ret = PianoXmlParseSimple (retStr); + + PianoFree (retStr, 0); + PianoFree (requestStr, 0); + + return ret; +} diff --git a/libpiano/src/piano.h b/libpiano/src/piano.h index 54c54dd..121f0db 100644 --- a/libpiano/src/piano.h +++ b/libpiano/src/piano.h @@ -101,7 +101,7 @@ struct PianoSong { char *musicId; char *title; char *focusTraitId; - //char *identity; + char *identity; //int score; /* only used for search results */ struct PianoSong *next; }; @@ -166,5 +166,6 @@ PianoReturn_t PianoSearchMusic (PianoHandle_t *ph, char *searchStr, PianoReturn_t PianoCreateStation (PianoHandle_t *ph, char *musicId); PianoReturn_t PianoStationAddMusic (PianoHandle_t *ph, PianoStation_t *station, char *musicId); +PianoReturn_t PianoSongTired (PianoHandle_t *ph, PianoSong_t *song); #endif /* _PIANO_H */ diff --git a/libpiano/src/xml.c b/libpiano/src/xml.c index 2613f40..3879f4a 100644 --- a/libpiano/src/xml.c +++ b/libpiano/src/xml.c @@ -243,6 +243,8 @@ void PianoXmlParsePlaylistCb (char *key, xmlNode *value, void *data) { song->focusTraitId = strdup (valueStr); } else if (strcmp ("songTitle", key) == 0) { song->title = strdup (valueStr); + } else if (strcmp ("identity", key) == 0) { + song->identity = strdup (valueStr); } else if (strcmp ("rating", key) == 0) { if (strcmp (valueStr, "1") == 0) { song->rating = PIANO_RATE_LOVE; -- cgit v1.2.3