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.

    module that displays a certain text from a website, the text on the website is updated daily

    Scheduled Pinned Locked Moved Requests
    36 Posts 6 Posters 12.8k Views 7 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.
    • S Offline
      sdetweil @Amoniak
      last edited by

      @Amoniak nah, compliments cant do that

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      1 Reply Last reply Reply Quote 0
      • A Offline
        Amoniak
        last edited by Amoniak

        Yes that is what I thought. is there another module?
        and thank you for your help

        S 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @Amoniak
          last edited by

          @Amoniak look thru the 3rd party.list. not up to date by a mile, but maybe

          https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • A Offline
            Amoniak
            last edited by

            I think I’ve found a similar module (MMM-PoemOfTheDay), but I don’t know how to adapt it to my needs, can someone help me?
            Thanks :)

            A 1 Reply Last reply Reply Quote 0
            • A Offline
              ashishtank Module Developer @Amoniak
              last edited by

              @Amoniak MMM-PoemOfTheDay is perfect to adapt for your need. Instead of poem site you need to get data from WatchTower site and parse the html response to extract the text.

              A 1 Reply Last reply Reply Quote 0
              • A Offline
                Amoniak @ashishtank
                last edited by

                @ashishtank said in module that displays a certain text from a website, the text on the website is updated daily:

                MMM-PoemOfTheDay is perfect to adapt for your need. Instead of poem site you need to get data from WatchTower site and parse the html response to extract the text.

                wow, thank you very much for your feedback, I’ll try to see if I can do it.

                1 Reply Last reply Reply Quote 0
                • A Offline
                  Amoniak
                  last edited by Amoniak

                  @ashishtank ok, I have installed the module, but it only shows me a black screen

                  A 1 Reply Last reply Reply Quote 0
                  • A Offline
                    ashishtank Module Developer @Amoniak
                    last edited by

                    @Amoniak any error in dev console or PM2/terminal ?

                    A 1 Reply Last reply Reply Quote 0
                    • A Offline
                      Amoniak @ashishtank
                      last edited by

                      @ashishtank i got it now, i will now try to parse the html response to extract the text, any good tips?

                      A E 2 Replies Last reply Reply Quote 0
                      • A Offline
                        ashishtank Module Developer @Amoniak
                        last edited by

                        @Amoniak yes, I checked the response from watch tower in postman and they give data of last 2-3 days or may be from Sunday to this day, so you will need to select the right node. You can use class tabContent as identifier and today’s date for selection of the node. Also check which html parse is good enough, as HTML is very complex to parse you may want to choose right parser which gives speed and is lightweight. i.e. node-html-parser

                        2021-01-20-18-33-58-Clipboard

                        Other thing you can do is once you have parsed text data from watch tower, you can assign it to poem’s format (title, content and name) and it will just work. later on you can change the UI and text property names if you want.

                        S 1 Reply Last reply Reply Quote 0
                        • S Offline
                          sdetweil @ashishtank
                          last edited by sdetweil

                          @ashishtank cheerio lib will parse html to json

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          1 Reply Last reply Reply Quote 1
                          • A Offline
                            Amoniak
                            last edited by

                            well, I’ll get started then. Keep your fingers crossed.

                            1 Reply Last reply Reply Quote 0
                            • A Offline
                              Amoniak
                              last edited by Amoniak

                              i installed cheerio, but i don’t know how to use it.
                              do I have to put this now in my “MMM-PoemOfTheDay.js” ?
                              Bild 20.01.21 um 23.10.jpg

                              S 1 Reply Last reply Reply Quote 0
                              • S Offline
                                sdetweil @Amoniak
                                last edited by

                                @Amoniak gotta go read the library usage

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                1 Reply Last reply Reply Quote 0
                                • L Offline
                                  lolo
                                  last edited by

                                  It gonna be harder than u think as your text is changing daily. Just follow the the pattern.
                                  Every day this is changed( https://wol.jw.org/hr/wol/h/r19/lp-c).
                                  new day new text.
                                  Text is in :
                                  div id=“dailyText”
                                  but if you ignore reference in text as (Mat. 16:24, 25; Ivan 15:20) located in a class it’s gonna be more easier.
                                  And with cheerio u can complete this.

                                  1 Reply Last reply Reply Quote 0
                                  • A Offline
                                    Amoniak
                                    last edited by

                                    so, this is what my NodeHelper.js looks like. like i thought, the screen is black.

                                    const axios = require("axios");
                                    const DetectLanguage = require("detectlanguage");
                                    
                                    module.exports = NodeHelper.create({
                                            socketNotificationReceived: async function(noti, payload) {
                                                    if (noti === "START") {
                                                            if (payload.updateInterval < 120000) {
                                                                    payload.updateInterval = 120000;
                                                            }
                                                            const self = this;
                                                            (async function displayWatchtower () {
                                                                    const poem = await getWatchtower(payload);
                                                                    self.sendSocketNotification("UPDATE", poem);
                                                                    setTimeout(displayPoem, payload.updateInterval);
                                                            })();
                                                    }
                                            }
                                    });
                                    
                                    const cheerio = require("cheerio");
                                    const axios = require("axios").default;
                                    
                                    const fethHtml = async url => {
                                      try {
                                        const { data } = await axios.get(url);
                                        return data;
                                      } catch {
                                        console.error(`ERROR: An error occurred while trying to fetch the URL: ${url}`);
                                      }
                                    };
                                    
                                    const extracWatchtower = selector => {
                                      const theme = selector
                                        .find(".tabContent active")
                                        .find("[class='themeScrp'] > [class='b'])
                                        .text()
                                        .trim();
                                    
                                     const text = selector
                                        .find(".bodyTxt")
                                        .find("[class='section']")
                                        .text()
                                        .trim();
                                    
                                     return { theme,
                                              text
                                     };
                                    };
                                    
                                    const scrapWatchtower = async () => {
                                      const watchtowerUrl =
                                        "https://wol.jw.org/hr/wol/h/r19/lp-c";
                                    
                                      const html = await fethHtml(watchtowerUrl);
                                    
                                      const selector = cheerio.load(html);
                                    
                                      const searchResults = selector("body")
                                          .find("#dailyText"
                                      );
                                    
                                      const deals = searchResults.map((idx, el) => {
                                          const elementSelector = selector(el);
                                          return extractDeal(elementSelector)
                                        })
                                        .get();
                                    
                                      return Watchtower;
                                    
                                    };
                                    
                                    1 Reply Last reply Reply Quote 0
                                    • A Offline
                                      ashishtank Module Developer
                                      last edited by

                                      @Amoniak there are lots of missing pieces… add console.log with some message in each function and see how the flow works.

                                      1 Reply Last reply Reply Quote 0
                                      • L Offline
                                        lolo
                                        last edited by

                                        Try to do something with this code. It will retrieve data from current day. Modifying that node_helper is not great idea.

                                            const url=  'https://wol.jw.org/hr/wol/h/r19/lp-c';
                                            request({
                                                url: url,
                                                method: 'GET'
                                                }, (error, response, body) => {
                                                    if (error) {
                                                        return console.error(error)
                                                    };
                                                 
                                                    var $ = cheerio.load(body); 
                                                    //console.log($.html());  
                                                    const data =  $('div[class="tabContent"]').first();
                                                            
                                                    let header = $(data).find('h2').text();
                                                    let title = $(data).find('p').first().text();
                                                    let text = $(data).find('div.pGroup>p').text();
                                                    //console.log(header,title,text);
                                                    var recivedData={
                                                        header,
                                                        title,
                                                        text
                                                    };
                                                    //console.log(recivedData);
                                                    
                                              
                                            });   
                                        
                                        A 1 Reply Last reply Reply Quote 0
                                        • F Offline
                                          fordi
                                          last edited by

                                          I bet you could use the same technique to see if any playstation 5 are in stock on websites?

                                          1 Reply Last reply Reply Quote 0
                                          • A Offline
                                            Amoniak @lolo
                                            last edited by

                                            @lolo thank you for the code.
                                            I used the “MagicMirror-Module-Template” to create a new file and the associated folder.
                                            this is my js:

                                            ‘’’

                                            Module.register(“dnevni_citat”, {
                                            defaults: {
                                            updateInterval: 60000,
                                            retryDelay: 5000
                                            },

                                                requiresVersion: "2.1.0", // Required version of MagicMirror
                                            
                                                start: function() {
                                                        var self = this;
                                                        var dataRequest = null;
                                                        var dataNotification = null;
                                            
                                                        //Flag for check if module is loaded
                                                        this.loaded = false;
                                            
                                                        // Schedule update timer.
                                                        this.getData();
                                                        setInterval(function() {
                                                                self.updateDom();
                                                        }, this.config.updateInterval);
                                                },
                                            
                                            const url=  'https://wol.jw.org/hr/wol/h/r19/lp-c';
                                            request({
                                                url: url,
                                                method: 'GET'
                                                }, (error, response, body) => {
                                                    if (error) {
                                                        return console.error(error)
                                                    };
                                                 
                                                    var $ = cheerio.load(body); 
                                                    //console.log($.html());  
                                                    const data =  $('div[class="tabContent"]').first();
                                                            
                                                    let header = $(data).find('h2').text();
                                                    let title = $(data).find('p').first().text();
                                                    let text = $(data).find('div.pGroup>p').text();
                                                    //console.log(header,title,text);
                                                    var recivedData={
                                                        header,
                                                        title,
                                                        text
                                                    };
                                                    //console.log(recivedData);
                                                
                                                        }
                                                },
                                            

                                            ‘’’
                                            what am I doing wrong?

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              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