• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Spotify Play?

Scheduled Pinned Locked Moved Bug Hunt
19 Posts 6 Posters 13.0k Views 12 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • E Offline
    ejay-ibm Project Sponsor Module Developer
    last edited by Mar 7, 2019, 6:03 PM

    Ok I see the answer coming to the screen but it look like it’s not passed to the module.

    "Micheal Jackson on spotify" ((open.spotify.com -- https://open.spotify.com/artist/3fMbdgg4jU18AjLCKBhRSm))\nMichael Jackson wasn't merely the biggest pop .... 
    

    Let me know if you need me to run some test or report logs to help you in debug.

    Ejay

    M 1 Reply Last reply Mar 7, 2019, 8:45 PM Reply Quote 0
    • M Offline
      mantha @ejay-ibm
      last edited by Mar 7, 2019, 8:45 PM

      @ejay-ibm
      in a first step you could check the console log for “[AMK2] openSpotify found:” and if the event PLAY_SPOTIFY was fired…

      E 1 Reply Last reply Mar 7, 2019, 10:54 PM Reply Quote 0
      • E Offline
        ejay-ibm Project Sponsor Module Developer @mantha
        last edited by ejay-ibm Mar 7, 2019, 11:13 PM Mar 7, 2019, 10:54 PM

        @mantha none of both found .
        could you point me to the line in your code sending this to the console log please ?
        I see in MK2 js code

        if (payload.foundOpenSpotify) {
        		this.sendNotification("PLAY_SPOTIFY", {
        			url: payload.foundOpenSpotify
        		})
            };
        

        I can say that the notification is not sent, so no payload.foundOpenSpotify occur

        I can see as well in node_helper.js

        if (openSpotify) {
                  console.error("[AMK2] openSpotify found:", openSpotify[1])
                  foundOpenSpotify = openSpotify[1]
                }
              })
        

        Why in console error instead of console log ?
        ( Sorry i’m not a dev might be a silly question and I guess the result would be the same if log or error it should be sent to the console… )

        M 1 Reply Last reply Mar 8, 2019, 8:19 AM Reply Quote 0
        • E Offline
          ejay-ibm Project Sponsor Module Developer
          last edited by ejay-ibm Mar 7, 2019, 11:47 PM Mar 7, 2019, 11:08 PM

          As well I think the regex is not correct here : node_helper.js line 290

          var re = new RegExp("\\(.open\\.spotify\\.com – (https:\\/\\/open\\.spotify\\.com[^ ]*).\\)", "gm")
          

          should be :

          var re = new RegExp("\(open\.spotify\.com – (https:\/\/open\.spotify\.com[^ ]*\/\)", "gm")
          
          open\.spotify\.com
          

          is the correct regex to match with :
          open.spotify.com
          and

          https:\/\/open\.spotify\.com[^ ]*\/
          

          is the correct regex to match with :
          https://open.spotify.com/fallback1234

          I may be wrong in my interpretation.

          1 Reply Last reply Reply Quote 0
          • M Offline
            mantha @ejay-ibm
            last edited by mantha Mar 8, 2019, 9:15 AM Mar 8, 2019, 8:19 AM

            @ejay-ibm said in Spotify Play?:

            Why in console error instead of console log ?
            ( Sorry i’m not a dev might be a silly question and I guess the result would be the same if log or error it should be sent to the console… )

            haha… there is a simple answer. I want them to be red to find them more easy. In a final version it should be console log…

            Regarding the RegEx: I just tested them in german. I’m for sure not an RegEx pro (that’s a kind of black magic for me) ;-)
            So if you have a better Regex expression feel free to change it.

            The additional escape characters was necessary to wrap the RegEx into the java code.
            Are you getting it to work without these escapes?

            Proposal:
            based on your post it seems to me, like the English version respond with

            open.spotify.com -- https...
            

            instead of

            open.spotify.com - https...
            
            

            So you might need to reflect this in the RegEx

            var re = new RegExp("\\(.open\\.spotify\\.com –+ (https:\\/\\/open\\.spotify\\.com[^ ]*).\\)", "gm")
            
            1 Reply Last reply Reply Quote 0
            • E Offline
              ejay-ibm Project Sponsor Module Developer
              last edited by ejay-ibm Mar 8, 2019, 9:48 AM Mar 8, 2019, 9:40 AM

              @mantha
              Sorry typo it well respond with

              open.spotify.com - https...
              

              I have try :

               var re = new RegExp("https:\/\/open\.spotify\.com\/([^ ]*)", "gm")
                      var openSpotify = re.exec(str)
                      if (openSpotify) {
                        console.error("[AMK2] openSpotify found:", openSpotify[1])
                        foundOpenSpotify = openSpotify[1]
              

              And I’m getting in console log :

              received a module notification: PLAY_SPOTIFY from sender: MMM-AssistantMk2

              but

              var re = new RegExp("\\(.open\\.spotify\\.com – (https:\\/\\/open\\.spotify\\.com[^ ]*).\\)", "gm")
              

              I’m not getting anything.

              What is strange is that in both case :
              console.error(“[AMK2] openSpotify found:”, openSpotify[1])

              Doesn’t throw anything…
              but as well
              console.log(“[AMK2] video found:”, youtubeVideo[1])
              Doesn’t throw anything either even when it find and play a video. so i’ll not worry for not about the notif logs

              So, for Now, I consider it’s working as PLAY_SPOTIFY notification is fired.

              What would be the next step now?

              Ejay

              M 1 Reply Last reply Mar 8, 2019, 10:16 AM Reply Quote 0
              • M Offline
                mantha @ejay-ibm
                last edited by Mar 8, 2019, 10:16 AM

                @ejay-ibm

                please check the console in the dev mode, as well as the filesystem logs…
                module and helper write unfortunately to different log destinations.

                Regarding the next steps I’m going to open a chat…

                1 Reply Last reply Reply Quote 0
                • E Offline
                  ejay-ibm Project Sponsor Module Developer
                  last edited by ejay-ibm Mar 9, 2019, 8:20 AM Mar 9, 2019, 8:12 AM

                  Ok I made a few changes in the MK2assistant node-helper.js

                  var re = new RegExp("https:\/\/open\.spotify\.com\/([a-zA-Z0-9?\/]+)", "gm")
                          //var re = new RegExp("\\(.open\\.spotify\\.com – (https:\\/\\/open\\.spotify\\.com[^ ]*).\\)", "gm")
                          var openSpotify = re.exec(str)
                          if (openSpotify) {
                          console.error("[AMK2] openSpotify found:", openSpotify[0])
                            foundOpenSpotify = openSpotify[0]
                          
                  

                  And as well in Nowplayingoncpotify/core/Spotifyconnector.js

                  let uri = replaceall("/", ":", url.replace("https:\/\/open.spotify.com", "spotify"));
                  

                  The slash were not escaped in the url making half of the line be a comment.

                  After updating raspotify to the latest I can say : “Michael Jackson on spotify” and the song start playing .
                  Good stuff .

                  I’m wondering if slash should be escaped as well here I haven’t do it since it’s working :

                  const tokenRefreshEndpoint = 'https://accounts.spotify.com/api/token';
                  const apiEndpoint = 'https://api.spotify.com/v1/me/player';
                  

                  As you can see the editor consider the part after the slash as comment

                  0_1552119557018_Capture d’écran 2019-03-09 à 09.18.38.png
                  Not sure how it works on interpretor side.

                  anyway I’ll post my update in the repo .

                  Ejay

                  M 1 Reply Last reply Mar 10, 2019, 1:27 PM Reply Quote 0
                  • M Offline
                    mantha @ejay-ibm
                    last edited by mantha Mar 10, 2019, 2:15 PM Mar 10, 2019, 1:27 PM

                    @ejay-ibm
                    Hey Ejay,

                    many thanks for testing and bug fixing.

                    Regarding your findings: The original RegEx still works on my installation, but based on your experience it seams like the RegEx is more stable by just looking for the URL itself. I can´t see any downside of this approach.
                    In my test it turn out that “-” and “_” need to be added to the character set, due to they are used e.g. in usernames (spotify_germany) which are part of playlist path.

                    Also the escaping is now much more proper (interesting that the raw version had worked…)

                    Important finding from ejay
                    if raspotify just jump back to track start instead of changing the song, an update of raspotify is needed. I had exactly the same behavior on my installation.

                    1 Reply Last reply Reply Quote 0
                    • 1
                    • 2
                    • 2 / 2
                    2 / 2
                    • First post
                      13/19
                      Last post
                    Enjoying MagicMirror? Please consider a donation!
                    MagicMirror created by Michael Teeuw.
                    Forum managed by Sam, technical setup by Karsten.
                    This forum is using NodeBB as its core | Contributors
                    Contact | Privacy Policy