Shim.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. /*
  2. * This software is released under the MIT License.
  3. * https://opensource.org/licenses/MIT
  4. *
  5. */
  6. #include <stdio.h>
  7. #include <string.h>
  8. #include <inttypes.h>
  9. #include "sdkconfig.h"
  10. #include "freertos/FreeRTOS.h"
  11. #include "freertos/task.h"
  12. #include "esp_system.h"
  13. #include "esp_wifi.h"
  14. #include "esp_event.h"
  15. #include "esp_log.h"
  16. #include "esp_http_server.h"
  17. #include <ConstantParameters.h>
  18. #include <Session.h>
  19. #include <SpircController.h>
  20. #include <MercuryManager.h>
  21. #include <ZeroconfAuthenticator.h>
  22. #include <ApResolve.h>
  23. #include <HTTPServer.h>
  24. #include "ConfigJSON.h"
  25. #include "Logger.h"
  26. #include "platform_config.h"
  27. #include "tools.h"
  28. #include "cspot_private.h"
  29. #include "cspot_sink.h"
  30. #include "Shim.h"
  31. extern "C" {
  32. httpd_handle_t get_http_server(int *port);
  33. static esp_err_t handlerWrapper(httpd_req_t *req);
  34. };
  35. #define CSPOT_STACK_SIZE (8*1024)
  36. static const char *TAG = "cspot";
  37. // using a global is pretty ugly, but it's easier with all Lambda below
  38. static EXT_RAM_ATTR struct cspot_s {
  39. char name[32];
  40. cspot_cmd_cb_t cHandler;
  41. cspot_data_cb_t dHandler;
  42. TaskHandle_t TaskHandle;
  43. std::shared_ptr<LoginBlob> blob;
  44. } cspot;
  45. std::shared_ptr<ConfigJSON> configMan;
  46. std::shared_ptr<NVSFile> file;
  47. std::shared_ptr<MercuryManager> mercuryManager;
  48. std::shared_ptr<SpircController> spircController;
  49. /****************************************************************************************
  50. * Main task (could it be deleted after spirc has started?)
  51. */
  52. static void cspotTask(void *pvParameters) {
  53. char configName[] = "cspot_config";
  54. std::string jsonConfig;
  55. // Config file
  56. file = std::make_shared<NVSFile>();
  57. configMan = std::make_shared<ConfigJSON>(configName, file);
  58. // We might have no config at all
  59. if (!file->readFile(configName, jsonConfig) || !jsonConfig.length()) {
  60. ESP_LOGW(TAG, "Cannot load config, using default");
  61. configMan->deviceName = cspot.name;
  62. configMan->format = AudioFormat::OGG_VORBIS_160;
  63. configMan->volume = 32767;
  64. configMan->save();
  65. }
  66. // safely load config now
  67. configMan->load();
  68. if (!configMan->deviceName.length()) configMan->deviceName = cspot.name;
  69. ESP_LOGI(TAG, "Started CSpot with %s (bitrate %d)", configMan->deviceName.c_str(), configMan->format == AudioFormat::OGG_VORBIS_320 ? 320 : (configMan->format == AudioFormat::OGG_VORBIS_160 ? 160 : 96));
  70. // All we do here is notify the task to start the mercury loop
  71. auto createPlayerCallback = [](std::shared_ptr<LoginBlob> blob) {
  72. // TODO: handle/refuse that another user takes ownership
  73. cspot.blob = blob;
  74. xTaskNotifyGive(cspot.TaskHandle);
  75. };
  76. int port;
  77. httpd_handle_t server = get_http_server(&port);
  78. auto httpServer = std::make_shared<ShimHTTPServer>(server, port);
  79. auto authenticator = std::make_shared<ZeroconfAuthenticator>(createPlayerCallback, httpServer);
  80. authenticator->registerHandlers();
  81. // wait to be notified and have a mercury loop
  82. while (1) {
  83. ulTaskNotifyTake(pdFALSE, portMAX_DELAY);
  84. auto session = std::make_unique<Session>();
  85. session->connectWithRandomAp();
  86. auto token = session->authenticate(cspot.blob);
  87. ESP_LOGI(TAG, "Creating Spotify(CSpot) player");
  88. // Auth successful
  89. if (token.size() > 0) {
  90. // tell sink that we are taking over
  91. cspot.cHandler(CSPOT_SETUP, 44100);
  92. auto audioSink = std::make_shared<ShimAudioSink>();
  93. // @TODO Actually store this token somewhere
  94. mercuryManager = std::make_shared<MercuryManager>(std::move(session));
  95. mercuryManager->startTask();
  96. spircController = std::make_shared<SpircController>(mercuryManager, cspot.blob->username, audioSink);
  97. spircController->setEventHandler([](CSpotEvent &event) {
  98. switch (event.eventType) {
  99. case CSpotEventType::TRACK_INFO: {
  100. TrackInfo track = std::get<TrackInfo>(event.data);
  101. cspot.cHandler(CSPOT_TRACK, 44100, track.artist.c_str(), track.album.c_str(), track.name.c_str());
  102. break;
  103. }
  104. case CSpotEventType::PLAY_PAUSE: {
  105. bool isPaused = std::get<bool>(event.data);
  106. if (isPaused) cspot.cHandler(CSPOT_PAUSE);
  107. else cspot.cHandler(CSPOT_PLAY);
  108. break;
  109. }
  110. case CSpotEventType::SEEK:
  111. cspot.cHandler(CSPOT_SEEK, std::get<int>(event.data));
  112. break;
  113. case CSpotEventType::DISC:
  114. cspot.cHandler(CSPOT_DISC);
  115. spircController->stopPlayer();
  116. mercuryManager->stop();
  117. break;
  118. case CSpotEventType::PREV:
  119. case CSpotEventType::NEXT:
  120. cspot.cHandler(CSPOT_FLUSH);
  121. break;
  122. /*
  123. // we use volume from sink which is a 16 bits value
  124. case CSpotEventType::VOLUME: {
  125. int volume = std::get<int>(event.data);
  126. cspot.cHandler(CSPOT_VOLUME, volume);
  127. ESP_LOGW(TAG, "cspot volume : %d", volume);
  128. break;
  129. }
  130. */
  131. default:
  132. break;
  133. }
  134. });
  135. mercuryManager->reconnectedCallback = []() {
  136. return spircController->subscribe();
  137. };
  138. mercuryManager->handleQueue();
  139. }
  140. // release all ownership
  141. mercuryManager.reset();
  142. spircController.reset();
  143. cspot.blob.reset();
  144. // flush files
  145. file->flush();
  146. ESP_LOGW(TAG, "THIS SESSION IS FINISHED %ld %ld %ld", mercuryManager.use_count(), spircController.use_count(), cspot.blob.use_count());
  147. }
  148. // we should not be here
  149. vTaskDelete(NULL);
  150. }
  151. /****************************************************************************************
  152. * API to create and start a cspot instance
  153. */
  154. struct cspot_s* cspot_create(const char *name, cspot_cmd_cb_t cmd_cb, cspot_data_cb_t data_cb) {
  155. static DRAM_ATTR StaticTask_t xTaskBuffer __attribute__ ((aligned (4)));
  156. static EXT_RAM_ATTR StackType_t xStack[CSPOT_STACK_SIZE] __attribute__ ((aligned (4)));
  157. bell::setDefaultLogger();
  158. cspot.cHandler = cmd_cb;
  159. cspot.dHandler = data_cb;
  160. strncpy(cspot.name, name, sizeof(cspot.name) - 1);
  161. cspot.TaskHandle = xTaskCreateStatic(&cspotTask, "cspot", CSPOT_STACK_SIZE, NULL, ESP_TASK_PRIO_MIN + 1, xStack, &xTaskBuffer);
  162. return &cspot;
  163. }
  164. /****************************************************************************************
  165. * Commands sent by local buttons/actions
  166. */
  167. bool cspot_cmd(struct cspot_s* ctx, cspot_event_t event, void *param) {
  168. switch(event) {
  169. case CSPOT_PREV:
  170. spircController->prevSong();
  171. break;
  172. case CSPOT_NEXT:
  173. spircController->nextSong();
  174. break;
  175. case CSPOT_TOGGLE:
  176. spircController->playToggle();
  177. break;
  178. case CSPOT_PAUSE:
  179. spircController->setPause(true);
  180. break;
  181. case CSPOT_PLAY:
  182. spircController->setPause(false);
  183. break;
  184. case CSPOT_DISC:
  185. spircController->stopPlayer();
  186. mercuryManager->stop();
  187. break;
  188. case CSPOT_STOP:
  189. spircController->stopPlayer();
  190. break;
  191. case CSPOT_VOLUME_UP:
  192. spircController->adjustVolume(MAX_VOLUME / 100 + 1);
  193. break;
  194. case CSPOT_VOLUME_DOWN:
  195. spircController->adjustVolume(-(MAX_VOLUME / 100 + 1));
  196. break;
  197. default:
  198. break;
  199. }
  200. return true;
  201. }
  202. /****************************************************************************************
  203. * AudioSink class to push data to squeezelite backend (decode_external)
  204. */
  205. void ShimAudioSink::volumeChanged(uint16_t volume) {
  206. cspot.cHandler(CSPOT_VOLUME, volume);
  207. }
  208. void ShimAudioSink::feedPCMFrames(std::vector<uint8_t> &data) {
  209. cspot.dHandler(&data[0], data.size());
  210. }
  211. /****************************************************************************************
  212. * NVSFile class to store config
  213. */
  214. bool NVSFile::readFile(std::string filename, std::string &fileContent) {
  215. auto search = files.find(filename);
  216. // cache
  217. if (search == files.end()) {
  218. char *content = (char*) config_alloc_get(NVS_TYPE_STR, filename.c_str());
  219. if (!content) return false;
  220. fileContent = content;
  221. free(content);
  222. } else {
  223. fileContent = search->second;
  224. }
  225. return true;
  226. }
  227. bool NVSFile::writeFile(std::string filename, std::string fileContent) {
  228. auto search = files.find(filename);
  229. files[filename] = fileContent;
  230. if (search == files.end()) return (ESP_OK == config_set_value(NVS_TYPE_STR, filename.c_str(), fileContent.c_str()));
  231. return true;
  232. }
  233. bool NVSFile::flush() {
  234. esp_err_t err = ESP_OK;
  235. for (auto it = files.begin(); it != files.end(); ++it) {
  236. err |= config_set_value(NVS_TYPE_STR, it->first.c_str(), it->second.c_str());
  237. }
  238. return (err == ESP_OK);
  239. }
  240. /****************************************************************************************
  241. * Shim HTTP server for spirc
  242. */
  243. static esp_err_t handlerWrapper(httpd_req_t *req) {
  244. bell::HTTPRequest request = { };
  245. char *query = NULL, *body = NULL;
  246. bell::httpHandler *handler = (bell::httpHandler*) req->user_ctx;
  247. size_t query_len = httpd_req_get_url_query_len(req);
  248. request.connection = httpd_req_to_sockfd(req);
  249. // get body if any (add '\0' at the end if used as string)
  250. if (req->content_len) {
  251. body = (char*) calloc(1, req->content_len + 1);
  252. int size = httpd_req_recv(req, body, req->content_len);
  253. request.body = body;
  254. ESP_LOGD(TAG,"wrapper received body %d/%d", size, req->content_len);
  255. }
  256. // parse query if any (can be in body as well for url-encoded)
  257. if (query_len) {
  258. query = (char*) malloc(query_len + 1);
  259. httpd_req_get_url_query_str(req, query, query_len + 1);
  260. } else if (body && strchr(body, '&')) {
  261. query = body;
  262. body = NULL;
  263. }
  264. // I know this is very crude and unsafe...
  265. url_decode(query);
  266. char *key = strtok(query, "&");
  267. while (key) {
  268. char *value = strchr(key, '=');
  269. *value++ = '\0';
  270. request.queryParams[key] = value;
  271. ESP_LOGD(TAG,"wrapper received key:%s value:%s", key, value);
  272. key = strtok(NULL, "&");
  273. };
  274. if (query) free(query);
  275. if (body) free(body);
  276. /*
  277. This is a strange construct as the C++ handler will call the ShimHTTPSer::respond
  278. and then we'll return. So we can't obtain the response to be sent, as esp_http_server
  279. normally expects, instead respond() will use raw socket and close connection
  280. */
  281. (*handler)(request);
  282. return ESP_OK;
  283. }
  284. void ShimHTTPServer::registerHandler(bell::RequestType requestType, const std::string &routeUrl, bell::httpHandler handler) {
  285. httpd_uri_t request = {
  286. .uri = routeUrl.c_str(),
  287. .method = (requestType == bell::RequestType::GET ? HTTP_GET : HTTP_POST),
  288. .handler = handlerWrapper,
  289. .user_ctx = NULL,
  290. };
  291. // find athe first free spot and register handler
  292. for (int i = 0; i < sizeof(uriHandlers)/sizeof(bell::httpHandler); i++) {
  293. if (!uriHandlers[i]) {
  294. uriHandlers[i] = handler;
  295. request.user_ctx = uriHandlers + i;
  296. httpd_register_uri_handler(serverHandle, &request);
  297. break;
  298. }
  299. }
  300. if (!request.user_ctx) ESP_LOGW(TAG, "Cannot add handler for %s", routeUrl.c_str());
  301. }
  302. void ShimHTTPServer::respond(const bell::HTTPResponse &response) {
  303. char *buf;
  304. size_t len = asprintf(&buf, "HTTP/1.1 %d OK\r\n"
  305. "Server: SQUEEZEESP32\r\n"
  306. "Connection: close\r\n"
  307. "Content-type: %s\r\n"
  308. "Content-length: %d\r\n"
  309. "Access-Control-Allow-Origin: *\r\n"
  310. "Access-Control-Allow-Methods: GET, POST, PATCH, PUT, DELETE, OPTIONS\r\n"
  311. "Access-Control-Allow-Headers: Origin, Content-Type, X-Auth-Token\r\n"
  312. "\r\n%s",
  313. response.status, response.contentType.c_str(),
  314. response.body.size(), response.body.c_str()
  315. );
  316. // use raw socket send and close connection
  317. httpd_socket_send(serverHandle, response.connectionFd, buf, len, 0);
  318. free(buf);
  319. // we want to close the socket due to the strange construct
  320. httpd_sess_trigger_close(serverHandle, response.connectionFd);
  321. }