Shim.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. /*
  2. * This software is released under the MIT License.
  3. * https://opensource.org/licenses/MIT
  4. *
  5. */
  6. #include <string>
  7. #include <streambuf>
  8. #include <Session.h>
  9. #include <PlainConnection.h>
  10. #include <memory>
  11. #include <vector>
  12. #include <inttypes.h>
  13. #include <fstream>
  14. #include <stdarg.h>
  15. #include <ApResolve.h>
  16. #include "BellTask.h"
  17. #include "MDNSService.h"
  18. #include "TrackPlayer.h"
  19. #include "CSpotContext.h"
  20. #include "SpircHandler.h"
  21. #include "LoginBlob.h"
  22. #include "CentralAudioBuffer.h"
  23. #include "Logger.h"
  24. #include "Utils.h"
  25. #include "esp_http_server.h"
  26. #include "cspot_private.h"
  27. #include "cspot_sink.h"
  28. #include "Config.h"
  29. #include "tools.h"
  30. #include "accessors.h"
  31. #include "tools_http_utils.h"
  32. static class cspotPlayer *player;
  33. static const struct {
  34. const char *ns;
  35. const char *credentials;
  36. } spotify_ns = { .ns = "spotify", .credentials = "credentials" };
  37. /****************************************************************************************
  38. * Player's main class & task
  39. */
  40. class cspotPlayer : public bell::Task {
  41. private:
  42. std::string name;
  43. bell::WrappedSemaphore clientConnected;
  44. std::atomic<bool> isPaused;
  45. enum states { ABORT, LINKED, DISCO };
  46. std::atomic<states> state;
  47. std::string credentials;
  48. bool zeroConf;
  49. int startOffset, volume = 0, bitrate = 160;
  50. httpd_handle_t serverHandle;
  51. int serverPort;
  52. cspot_cmd_cb_t cmdHandler;
  53. cspot_data_cb_t dataHandler;
  54. std::string lastTrackId;
  55. std::shared_ptr<cspot::LoginBlob> blob;
  56. std::unique_ptr<cspot::SpircHandler> spirc;
  57. void eventHandler(std::unique_ptr<cspot::SpircHandler::Event> event);
  58. void trackHandler(void);
  59. size_t pcmWrite(uint8_t *pcm, size_t bytes, std::string_view trackId);
  60. void enableZeroConf(void);
  61. void runTask();
  62. sys_spotify_config * cspot_config = NULL;
  63. public:
  64. typedef enum {TRACK_INIT, TRACK_NOTIFY, TRACK_STREAM, TRACK_END} TrackStatus;
  65. std::atomic<TrackStatus> trackStatus = TRACK_INIT;
  66. cspotPlayer(const char*, httpd_handle_t, int, cspot_cmd_cb_t, cspot_data_cb_t);
  67. esp_err_t handleGET(httpd_req_t *request);
  68. esp_err_t handlePOST(httpd_req_t *request);
  69. void command(cspot_event_t event);
  70. };
  71. cspotPlayer::cspotPlayer(const char* name, httpd_handle_t server, int port, cspot_cmd_cb_t cmdHandler, cspot_data_cb_t dataHandler) :
  72. bell::Task("playerInstance", 32 * 1024, 0, 0),
  73. serverHandle(server), serverPort(port),
  74. cmdHandler(cmdHandler), dataHandler(dataHandler) {
  75. if(!sys_services_config_SPOTIFY(cspot_config)){
  76. return;
  77. }
  78. volume = cspot_config->volume;
  79. bitrate = cspot_config->bitrate;
  80. this->name = strlen(platform->names.spotify)>0?platform->names.spotify:name;
  81. zeroConf = cspot_config->zeroconf;
  82. // get optional credentials from own NVS
  83. if (!zeroConf) {
  84. if (sys_state->cspot_credentials && strlen(sys_state->cspot_credentials)>0) {
  85. this->credentials = sys_state->cspot_credentials;
  86. }
  87. }
  88. if (bitrate != 96 && bitrate != 160 && bitrate != 320) bitrate = 160;
  89. }
  90. size_t cspotPlayer::pcmWrite(uint8_t *pcm, size_t bytes, std::string_view trackId) {
  91. if (lastTrackId != trackId) {
  92. CSPOT_LOG(info, "new track started <%s> => <%s>", lastTrackId.c_str(), trackId.data());
  93. lastTrackId = trackId;
  94. trackHandler();
  95. }
  96. return dataHandler(pcm, bytes);
  97. }
  98. extern "C" {
  99. static esp_err_t handleGET(httpd_req_t *request) {
  100. return player->handleGET(request);
  101. }
  102. static esp_err_t handlePOST(httpd_req_t *request) {
  103. return player->handlePOST(request);
  104. }
  105. }
  106. esp_err_t cspotPlayer::handleGET(httpd_req_t *request) {
  107. std::string body = this->blob->buildZeroconfInfo();
  108. if (body.size() == 0) {
  109. CSPOT_LOG(info, "cspot empty blob's body on GET");
  110. return ESP_ERR_HTTPD_INVALID_REQ;
  111. }
  112. httpd_resp_set_hdr(request, "Content-type", "application/json");
  113. httpd_resp_send(request, body.c_str(), body.size());
  114. return ESP_OK;
  115. }
  116. esp_err_t cspotPlayer::handlePOST(httpd_req_t *request) {
  117. cJSON* response= cJSON_CreateObject();
  118. //see https://developer.spotify.com/documentation/commercial-hardware/implementation/guides/zeroconf
  119. if (cmdHandler(CSPOT_BUSY)) {
  120. cJSON_AddNumberToObject(response, "status", 101);
  121. cJSON_AddStringToObject(response, "statusString", "OK");
  122. cJSON_AddNumberToObject(response, "spotifyError", 0);
  123. // get body if any (add '\0' at the end if used as string)
  124. if (request->content_len) {
  125. char* body = (char*) calloc(1, request->content_len + 1);
  126. int size = httpd_req_recv(request, body, request->content_len);
  127. // I know this is very crude and unsafe...
  128. url_decode(body);
  129. char *key = strtok(body, "&");
  130. std::map<std::string, std::string> queryMap;
  131. while (key) {
  132. char *value = strchr(key, '=');
  133. *value++ = '\0';
  134. queryMap[key] = value;
  135. key = strtok(NULL, "&");
  136. };
  137. free(body);
  138. // Pass user's credentials to the blob and give the token
  139. blob->loadZeroconfQuery(queryMap);
  140. clientConnected.give();
  141. }
  142. } else {
  143. cJSON_AddNumberToObject(response, "status", 202);
  144. cJSON_AddStringToObject(response, "statusString", "ERROR-LOGIN-FAILED");
  145. cJSON_AddNumberToObject(response, "spotifyError", 0);
  146. CSPOT_LOG(info, "sink is busy, can't accept request");
  147. }
  148. char *responseStr = cJSON_PrintUnformatted(response);
  149. cJSON_Delete(response);
  150. httpd_resp_set_hdr(request, "Content-type", "application/json");
  151. esp_err_t rc = httpd_resp_send(request, responseStr, strlen(responseStr));
  152. free(responseStr);
  153. return rc;
  154. }
  155. void cspotPlayer::eventHandler(std::unique_ptr<cspot::SpircHandler::Event> event) {
  156. switch (event->eventType) {
  157. case cspot::SpircHandler::EventType::PLAYBACK_START: {
  158. lastTrackId.clear();
  159. // we are not playing anymore
  160. trackStatus = TRACK_INIT;
  161. // memorize position for when track's beginning will be detected
  162. startOffset = std::get<int>(event->data);
  163. // Spotify servers do not send volume at connection
  164. spirc->setRemoteVolume(volume);
  165. cmdHandler(CSPOT_START, 44100);
  166. CSPOT_LOG(info, "(re)start playing");
  167. break;
  168. }
  169. case cspot::SpircHandler::EventType::PLAY_PAUSE: {
  170. isPaused = std::get<bool>(event->data);
  171. cmdHandler(isPaused ? CSPOT_PAUSE : CSPOT_PLAY);
  172. break;
  173. }
  174. case cspot::SpircHandler::EventType::TRACK_INFO: {
  175. auto trackInfo = std::get<cspot::TrackInfo>(event->data);
  176. cmdHandler(CSPOT_TRACK_INFO, trackInfo.duration, startOffset, trackInfo.artist.c_str(),
  177. trackInfo.album.c_str(), trackInfo.name.c_str(), trackInfo.imageUrl.c_str());
  178. spirc->updatePositionMs(startOffset);
  179. startOffset = 0;
  180. break;
  181. }
  182. case cspot::SpircHandler::EventType::NEXT:
  183. case cspot::SpircHandler::EventType::PREV:
  184. case cspot::SpircHandler::EventType::FLUSH: {
  185. cmdHandler(CSPOT_FLUSH);
  186. break;
  187. }
  188. case cspot::SpircHandler::EventType::DISC:
  189. cmdHandler(CSPOT_DISC);
  190. state = DISCO;
  191. break;
  192. case cspot::SpircHandler::EventType::SEEK: {
  193. cmdHandler(CSPOT_SEEK, std::get<int>(event->data));
  194. break;
  195. }
  196. case cspot::SpircHandler::EventType::DEPLETED:
  197. trackStatus = TRACK_END;
  198. CSPOT_LOG(info, "playlist ended, no track left to play");
  199. break;
  200. case cspot::SpircHandler::EventType::VOLUME:
  201. volume = std::get<int>(event->data);
  202. cmdHandler(CSPOT_VOLUME, volume);
  203. break;
  204. default:
  205. break;
  206. }
  207. }
  208. void cspotPlayer::trackHandler(void) {
  209. // this is just informative
  210. uint32_t remains;
  211. cmdHandler(CSPOT_QUERY_REMAINING, &remains);
  212. CSPOT_LOG(info, "next track will play in %d ms", remains);
  213. // inform sink of track beginning
  214. trackStatus = TRACK_NOTIFY;
  215. cmdHandler(CSPOT_TRACK_MARK);
  216. }
  217. void cspotPlayer::command(cspot_event_t event) {
  218. if (!spirc) return;
  219. // switch...case consume a ton of extra .rodata
  220. switch (event) {
  221. // nextSong/previousSong come back through cspot::event as a FLUSH
  222. case CSPOT_PREV:
  223. spirc->previousSong();
  224. break;
  225. case CSPOT_NEXT:
  226. spirc->nextSong();
  227. break;
  228. // setPause comes back through cspot::event with PLAY/PAUSE
  229. case CSPOT_TOGGLE:
  230. isPaused = !isPaused;
  231. spirc->setPause(isPaused);
  232. break;
  233. case CSPOT_STOP:
  234. case CSPOT_PAUSE:
  235. spirc->setPause(true);
  236. break;
  237. case CSPOT_PLAY:
  238. spirc->setPause(false);
  239. break;
  240. /* Calling spirc->disconnect() might have been logical but it does not
  241. * generate any cspot::event */
  242. case CSPOT_DISC:
  243. cmdHandler(CSPOT_DISC);
  244. state = ABORT;
  245. break;
  246. // spirc->setRemoteVolume does not generate a cspot::event so call cmdHandler
  247. case CSPOT_VOLUME_UP:
  248. volume += (UINT16_MAX / 50);
  249. volume = std::min(volume, UINT16_MAX);
  250. cmdHandler(CSPOT_VOLUME, volume);
  251. spirc->setRemoteVolume(volume);
  252. break;
  253. case CSPOT_VOLUME_DOWN:
  254. volume -= (UINT16_MAX / 50);
  255. volume = std::max(volume, 0);
  256. cmdHandler(CSPOT_VOLUME, volume);
  257. spirc->setRemoteVolume(volume);
  258. break;
  259. default:
  260. break;
  261. }
  262. }
  263. void cspotPlayer::enableZeroConf(void) {
  264. httpd_uri_t request = {
  265. .uri = "/spotify_info",
  266. .method = HTTP_GET,
  267. .handler = ::handleGET,
  268. .user_ctx = NULL,
  269. };
  270. // register GET and POST handler for built-in server
  271. httpd_register_uri_handler(serverHandle, &request);
  272. request.method = HTTP_POST;
  273. request.handler = ::handlePOST;
  274. httpd_register_uri_handler(serverHandle, &request);
  275. CSPOT_LOG(info, "ZeroConf mode (port %d)", serverPort);
  276. // Register mdns service, for spotify to find us
  277. bell::MDNSService::registerService( blob->getDeviceName(), "_spotify-connect", "_tcp", "", serverPort,
  278. { {"VERSION", "1.0"}, {"CPath", "/spotify_info"}, {"Stack", "SP"} });
  279. }
  280. void cspotPlayer::runTask() {
  281. bool useZeroConf = zeroConf;
  282. // construct blob for that player
  283. blob = std::make_unique<cspot::LoginBlob>(name);
  284. CSPOT_LOG(info, "CSpot instance service name %s (id %s)", blob->getDeviceName().c_str(), blob->getDeviceId().c_str());
  285. if (!zeroConf && !credentials.empty()) {
  286. blob->loadJson(credentials);
  287. CSPOT_LOG(info, "Reusable credentials mode");
  288. } else {
  289. // whether we want it or not we must use ZeroConf
  290. useZeroConf = true;
  291. enableZeroConf();
  292. }
  293. // gone with the wind...
  294. while (1) {
  295. if (useZeroConf) clientConnected.wait();
  296. CSPOT_LOG(info, "Spotify client launched for %s", name.c_str());
  297. auto ctx = cspot::Context::createFromBlob(blob);
  298. if (bitrate == 320) ctx->config.audioFormat = AudioFormat_OGG_VORBIS_320;
  299. else if (bitrate == 96) ctx->config.audioFormat = AudioFormat_OGG_VORBIS_96;
  300. else ctx->config.audioFormat = AudioFormat_OGG_VORBIS_160;
  301. ctx->session->connectWithRandomAp();
  302. ctx->config.authData = ctx->session->authenticate(blob);
  303. // Auth successful
  304. if (ctx->config.authData.size() > 0) {
  305. // we might have been forced to use zeroConf, so store credentials and reset zeroConf usage
  306. if (!zeroConf) {
  307. useZeroConf = false;
  308. if(system_set_string(&sys_state_data_msg,sys_state_data_cspot_credentials_tag,sys_state,credentials.c_str())){
  309. config_raise_state_changed();
  310. }
  311. }
  312. spirc = std::make_unique<cspot::SpircHandler>(ctx);
  313. state = LINKED;
  314. // set call back to calculate a hash on trackId
  315. spirc->getTrackPlayer()->setDataCallback(
  316. [this](uint8_t* data, size_t bytes, std::string_view trackId) {
  317. return pcmWrite(data, bytes, trackId);
  318. });
  319. // set event (PLAY, VOLUME...) handler
  320. spirc->setEventHandler(
  321. [this](std::unique_ptr<cspot::SpircHandler::Event> event) {
  322. eventHandler(std::move(event));
  323. });
  324. // Start handling mercury messages
  325. ctx->session->startTask();
  326. // set volume at connection
  327. cmdHandler(CSPOT_VOLUME, volume);
  328. // exit when player has stopped (received a DISC)
  329. while (state == LINKED) {
  330. ctx->session->handlePacket();
  331. // low-accuracy polling events
  332. if (trackStatus == TRACK_NOTIFY) {
  333. // inform Spotify that next track has started (don't need to be super accurate)
  334. uint32_t started;
  335. cmdHandler(CSPOT_QUERY_STARTED, &started);
  336. if (started) {
  337. CSPOT_LOG(info, "next track's audio has reached DAC");
  338. spirc->notifyAudioReachedPlayback();
  339. trackStatus = TRACK_STREAM;
  340. }
  341. } else if (trackStatus == TRACK_END) {
  342. // wait for end of last track
  343. uint32_t remains;
  344. cmdHandler(CSPOT_QUERY_REMAINING, &remains);
  345. if (!remains) {
  346. CSPOT_LOG(info, "last track finished");
  347. trackStatus = TRACK_INIT;
  348. cmdHandler(CSPOT_STOP);
  349. spirc->notifyAudioEnded();
  350. }
  351. }
  352. // on disconnect, stay in the core loop unless we are in ZeroConf mode
  353. if (state == DISCO) {
  354. // update volume then
  355. cspot_config->volume = volume;
  356. config_raise_changed(false);
  357. // in ZeroConf mod, stay connected (in this loop)
  358. if (!zeroConf) state = LINKED;
  359. }
  360. }
  361. spirc->disconnect();
  362. spirc.reset();
  363. CSPOT_LOG(info, "disconnecting player %s", name.c_str());
  364. } else {
  365. CSPOT_LOG(error, "failed authentication, forcing ZeroConf");
  366. if (!useZeroConf) enableZeroConf();
  367. useZeroConf = true;
  368. }
  369. // we want to release memory ASAP and for sure
  370. ctx.reset();
  371. }
  372. }
  373. /****************************************************************************************
  374. * API to create and start a cspot instance
  375. */
  376. struct cspot_s* cspot_create(const char *name, httpd_handle_t server, int port, cspot_cmd_cb_t cmd_cb, cspot_data_cb_t data_cb) {
  377. bell::setDefaultLogger();
  378. bell::enableTimestampLogging(true);
  379. player = new cspotPlayer(name, server, port, cmd_cb, data_cb);
  380. player->startTask();
  381. return (cspot_s*) player;
  382. }
  383. /****************************************************************************************
  384. * Commands sent by local buttons/actions
  385. */
  386. bool cspot_cmd(struct cspot_s* ctx, cspot_event_t event, void *param) {
  387. player->command(event);
  388. return true;
  389. }