Changes for page 2 Script

Last modified by Devin Chen on 2025/06/06 14:03

From version 23.1
edited by Hunter
on 2022/10/09 15:01
Change comment: There is no comment for this version
To version 21.1
edited by Stone Wu
on 2022/08/01 10:01
Change comment: Renamed back-links.

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.Hunter
1 +XWiki.Stone
Content
... ... @@ -135,210 +135,7 @@
135 135  end
136 136  {{/code}}
137 137  
138 -== **1.6 LINE Notify** ==
139 139  
140 -This example shows how to use the LINE Notify to send message into LINE group. When monitoring bit "@test" changes, it will trigger and send the message. Please replace with your own Token.
141 -
142 -{{code}}
143 -local tempBit = 0
144 -local tempWord = 0
145 -
146 -local LineToken = "08XCpubkOdwGdGgRTXF0x8umiyrALtoM0v6lBFUV6PC"
147 -
148 -local https = require("https")
149 -local json = require("json")
150 -local ltn12 = require("ltn12")
151 -
152 --- Send http.get request and return response result
153 -function getHttpsUrl(url,header,reqbody)
154 - local body = {}
155 - local bodyJson = json.encode(body)
156 - local result_table, code, headers, status = https.request{
157 - method = "POST",
158 - url = url,
159 - source = ltn12.source.string(reqbody),
160 - headers = header,
161 - sink = ltn12.sink.table(body)
162 - }
163 - print("code:"..code)
164 - if code~= 200 then
165 - return
166 - else
167 - return body
168 - end
169 -end
170 -
171 -function getMessageUrl(lineMessage)
172 - local url = "https://notify-api.line.me/api/notify"
173 - local reqMess = "message="..lineMessage
174 - local headers =
175 - {
176 - ["Authorization"] = "Bearer "..LineToken,
177 - ["Content-Type"] = "application/x-www-form-urlencoded",
178 - ["Content-Length"] = #reqMess
179 - }
180 -
181 - print("Get the link:"..url)
182 - getHttpsUrl(url, headers, reqMess)
183 -end
184 -
185 -
186 -function linenotify.main()
187 - local bitValue = addr_getbit("@test");
188 - local message = ''
189 - print("b=="..bitValue)
190 - if bitValue == 1 and bitValue ~= tempBit then
191 - message = 'Alarm V-Box triggered, the output is '.. bitValue
192 - getMessageUrl(message)
193 - print("Notification pushed of triggering alarm,"..bitValue)
194 - elseif bitValue == 0 and bitValue ~= tempBit then
195 - message = 'Alarm V-Box dismissed, the output is '.. bitValue
196 - getMessageUrl(message)
197 - print("Notification pushed of dismissing alarm,"..bitValue)
198 - end
199 - tempBit = bitValue----Prevent monitoring values from continuous being sent to the platform
200 -
201 - local wordValue = addr_getword("@t2")
202 - print("w=="..wordValue)
203 - --dosomething
204 - if wordValue >= 100 and wordValue ~= tempWord and tempWord <= 100 then
205 - message = 'Alarm V-Box triggered, the temperature is '.. wordValue
206 - getMessageUrl(message)
207 - print("Notification pushed of triggering alarm,"..wordValue)
208 - elseif wordValue < 100 and wordValue ~= tempWord and tempWord >= 100 then
209 - message = 'Alarm V-Box dismissed, the temperature is '.. wordValue
210 - getMessageUrl(message)
211 - print("Notification pushed of dismissing alarm,"..wordValue)
212 - end
213 - tempWord = wordValue----Prevent monitoring values from continuous being sent to the platform
214 -end
215 -{{/code}}
216 -
217 -== **1.7 Twilio WhatsApp Messaging** ==
218 -
219 -This example shows how to use the Twilio API to send WhatsApp message to private number. When monitoring bit "@test" changes, it will trigger and send the message. Please replace with your own SID, Token, twilioPhoneNumber and receiverPhoneNumber.
220 -
221 -{{code language="Lua"}}
222 -local tempBit = 0
223 -local tempWord = 0
224 -
225 -local https = require("https")
226 -local json = require("json")
227 -local ltn12 = require("ltn12")
228 -
229 -local SID = 'AC1703bd710ffa98006d2bcc0b8d6ca63a'
230 -local Token = 'd3c11897623c39e538b20263ec190ae0'
231 -
232 -local twilioPhoneNumber = '+14155238886'
233 -local receiverPhoneNumber = '+8615880018277'
234 -
235 -local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
236 -function encodingBase64(data)
237 - return ((data:gsub('.', function(x)
238 - local r,b='',x:byte()
239 - for i=8,1,-1 do r=r..(b%2^i-b%2^(i-1)>0 and '1' or '0') end
240 - return r;
241 - end)..'0000'):gsub('%d%d%d?%d?%d?%d?', function(x)
242 - if (#x < 6) then return '' end
243 - local c=0
244 - for i=1,6 do c=c+(x:sub(i,i)=='1' and 2^(6-i) or 0) end
245 - return b:sub(c+1,c+1)
246 - end)..({ '', '==', '=' })[#data%3+1])
247 -end
248 -
249 -function encodeUrl(str)
250 - str = string.gsub(str, "([^%w%.%- ])", function(c)
251 - return string.format("%%%02X", string.byte(c)) end)
252 - return string.gsub(str, " ", "+")
253 -end
254 -
255 -
256 -
257 -
258 -function requestBodySplice(message, sender, receiver)
259 - local reqBody = ''
260 - local encodeMess = encodeUrl(message)
261 - local encodeSend = encodeUrl(sender)
262 - local encodeRece = encodeUrl(receiver)
263 - --reqBody = "Body=Hello%20Wecon2&From=whatsapp%3A%2B14155238886&To=whatsapp%3A%2B8615880018277"
264 - reqBody = string.format("Body=%s&From=whatsapp:%s&To=whatsapp:%s", encodeMess, encodeSend, encodeRece)
265 - print(reqBody)
266 - return reqBody
267 -end
268 -
269 -
270 --- Send http.get request and return response result
271 -function getHttpsUrl(url,header,reqbody)
272 - local body = {}
273 - local bodyJson = json.encode(body)
274 - local result_table, code, headers, status = https.request{
275 - method = "POST",
276 - url = url,
277 - source = ltn12.source.string(reqbody),
278 - headers = header,
279 - sink = ltn12.sink.table(body)
280 - }
281 - print("code:"..code)
282 - if code~= 200 then
283 - return
284 - else
285 - return body
286 - end
287 -end
288 -
289 -function getMessageUrl(whatsAppMessage)
290 - local auth = SID..':'..Token
291 - local url = "https://api.twilio.com/2010-04-01/Accounts/"..SID.."/Messages"
292 - --local reqMess = "message="..twilioMessage
293 - local reqMess = requestBodySplice(whatsAppMessage, twilioPhoneNumber, receiverPhoneNumber)
294 - local headers =
295 - {
296 - ["Authorization"] = "Basic "..encodingBase64(auth),
297 - ["Content-Type"] = "application/x-www-form-urlencoded",
298 - ["Content-Length"] = #reqMess
299 - }
300 -
301 - print("Get the link:"..url)
302 - getHttpsUrl(url, headers, reqMess)
303 -end
304 -
305 -
306 -
307 -function Twilio.main()
308 - --dosomething
309 - --local auth = SID..':'..Token
310 - --print(requestBodySplice("HelloWorld", twilioPhoneNumber, receiverPhoneNumber))
311 - --print(encodingBase64(auth))
312 - local bitValue = addr_getbit("@testBit");
313 - local message = ''
314 - print("b=="..bitValue)
315 - if bitValue == 1 and bitValue ~= tempBit then
316 - message = 'Alarm V-Box triggered, the output is '.. bitValue
317 - getMessageUrl(message)
318 - print("Notification pushed of triggering alarm,"..bitValue)
319 - elseif bitValue == 0 and bitValue ~= tempBit then
320 - message = 'Alarm V-Box dismissed, the output is '.. bitValue
321 - getMessageUrl(message)
322 - print("Notification pushed of dismissing alarm,"..bitValue)
323 - end
324 - tempBit = bitValue----Prevent monitoring values from continuous being sent to the platform
325 -
326 - local wordValue = addr_getword("@testWord")
327 - print("w=="..wordValue)
328 - --dosomething
329 - if wordValue >= 100 and wordValue ~= tempWord and tempWord <= 100 then
330 - message = 'Alarm V-Box triggered, the temperature is '.. wordValue
331 - getMessageUrl(message)
332 - print("Notification pushed of triggering alarm,"..wordValue)
333 - elseif wordValue < 100 and wordValue ~= tempWord and tempWord >= 100 then
334 - message = 'Alarm V-Box dismissed, the temperature is '.. wordValue
335 - getMessageUrl(message)
336 - print("Notification pushed of dismissing alarm,"..wordValue)
337 - end
338 - tempWord = wordValue----Prevent monitoring values from continuous being sent to the platform
339 -end
340 -{{/code}}
341 -
342 342  = **2 V-Box connect with third part server** =
343 343  
344 344  V-Box have two mode.One is for V-Net,User need to use WECON server to store data.We call this V-NET platform.