Read the statement by Michael Teeuw here.
Show calendar based on IP Address accessed
-
@Spinster you could add this service as a separate module, with no content to show
or have a hidden div w the ip address and be able to synchronous search the dom for it
document.getElementsbyId()… maybe
-
@Spinster
Depending on the environment and which modules you want to display on the screen, it may vary, but… If you don’t have many clients (less than 10) and your server has sufficient capacity, it might be better to provide each client with a dedicated server instance with a different port number. For example, Client 1 - Port 8081, Client 2 - Port 8082, … If there are 10 clients, run 10 MM servers.
You just need to setup config.js of each client-server pair for your purpose.There’s no need to modify the source code, and you also don’t need to allocate fixed IP addresses for each client through router settings or WLAN settings of clients. Usually, in home or office environments, DHCP is common, so this would be a simpler approach.
-
@sdetweil I understand about the log. Thank you.
Regarding the IP address, I am very new to javascript hence trying to get my head around it. Being a C programmer, certain things in JavaScript is still a distant for me. Hope to understand soon.
Just in case if you have some time, a simple code from you would help me. Please.
-
@MMRIZE I understand, Ideally I would like to avoid opening multiple ports and use a common config to serve clients based on their IP. In fact, though DHCP is used by my home server, I have only assigned the IP address to reservations, hence static IP within my home network is not a problem.
Please suggest a simple code to use a specific calendar based on IP address of the client.
-
@Spinster
I’m out of my test PC, so I can’t show atm. (Maybe tomorrow possible, if you couldn’t success until that time)
You can add custom config attribute map-like objectcalendarMapin your config.jsmodule: "calendar", position: "top_left", config: { calendarMap: { "192.168.178.100": ["calendar1", "calendar2"], "192.168.178.101": ["calebdar1", "calendar3"], }, calendars: [ { url: " … ", name: "calendar1", }, …In
calendar.jsaround line 176, whenCALENDAR_EVENTSnotification coming, you can filter the payload(array of events) of that notification by checkingcalendarNameof each event is matched tothis.config.calendarMap.Sorry I can’t show the real code now. Maybe some hours later I may be able to. Anyway concept would be like this.
-
@MMRIZE Great, You have given me an idea, will wait for your code. Please share when possible.
-
@Spinster
Ah I suddenly remember that getting Internal IP with only JavaScript on client browseris hard.
Hmmm another approach might be needed. -
@MMRIZE that is why you need the express api call…
I would make a separate module that has ip in div, not shown, but w id
then call in calendar is document.get…
compare, your way or on cal entries
more synchronous… -
@sdetweil
Yes. I thought a small module with node_helper that could return clients’ ip as a result of REST api call from calendar module. -
@MMRIZE and that module calls its own rest call publishes the address in its getDom() result, with id= on div
and then cal module can use synchronous document.getElementsById()
to get that value.
-
so the little module is
https://github.com/sdetweil/getip
and it does correctly return the ip address of the client… tested from 4 different systems to the same MM…
see later post for final solution
-
-
I tried your code, but find that once I include getip module in config.js, I am not seeing any output for calendar. Is this the expected output. Without getip module, I find that client_ip = document.getElementById("getip is returning null.Please advice
-
@Spinstersee later post
-
@Spinster
By the way, which client are you using? Electron? Or Browser? -
@MMRIZE Browser as of now.
I also tried using express ipfilter, but the problem is I don’t know how to use it in module.js, it is throwing error saying ipfilter not known etc
-
@Spinster well, here is a working example, in addition to the other code already
watch out if using address AND MM host system not included. as it won’t show either…
one could make the ipaddress in cal a list (of ip addresses) similar to what @MMRIZE does…
I don’t like adding the extra block,
just add the var to the thing that matters…see later post
-
@Spinster
Withgetipof @sdetweil andMMM-ModuleMonkeyPatch, I did it. (You don’t have to modify the original source code for future-proof.)Example.
Server is running on192.168.178.63and I run 2 clients on192.168.178.22and192.168.178.63.
Both 2 clients can show different set of calendars.

{ module: "MMM-ModuleMonkeyPatch", config: { patches: [ { module: "calendar", method: "socketNotificationReceived", patch: async function (original, args) { const [ notification, payload ] = args if (notification === "CALENDAR_EVENTS") { const calendarName = this.config.calendars.find((cal) => cal.url === payload?.url)?.name const r = await fetch('http://192.168.178.63:8080/modules/getip') const ip = JSON.parse(await r.text())?.[ 'address' ] ?? null if (!this.config.clientMap?.[ ip ]?.includes(calendarName)) { return original(notification, { ...payload, events: [] }) } } return original(notification, payload) } } ] } }, { module: "getip", }, { module: "calendar", header: "US Holidays", position: "top_left", config: { clientMap: { "192.168.178.63": [ "cal1", "cal2", "cal3" ], "192.168.178.22": ["cal3", "cal4", "cal5"] }, calendars: [ { url: "...", name: "cal1", }, { url: "...", name: "cal2", }, { url: "...", name: "cal3", }, { url: "...", name: "cal4", }, { url: "...", name: "cal5", } ] } },TO Improve
Whenever notificationCALENDAR_EVENTScoming,getipis called. After first execution, to store IP on thelocalStorageorcookiewould be better. -
@sdetweil will express ipfilter be useful? Similar to whitelist, can we try something
-
@Spinster no… as its in the wrong place… (inside node_helper…) we NEED the ip address to compare with
just get it and return . one time
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