Changeset 60
- Timestamp:
- 2013-11-05 17:10:38 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/UI7/I_VistaCamSD.xml ¶
r59 r60 31 31 32 32 -- List of camera variables which may contain credentials tokens (placeholders) 33 local VARIABLES = { "URL", "DirectStreamingURL", "VideoURLs" }33 local VARIABLES = { "URL", "DirectStreamingURL", "VideoURLs", "RingBuffer" } 34 34 35 35 ---------------------------------------------------------------------------------------------------------------- … … 572 572 if variable == "VideoURLs" then 573 573 fullUrl = value:match("w:(.-):") 574 elseif variable == "RingBuffer" then 575 fullUrl = value:match("[%d,]*/?(.*)") 574 576 else 575 577 fullUrl = value:match("^/?(.*)") … … 597 599 -- For the VideoURLs variable the user and pwd parameters are mandatory. 598 600 -- For the other variables we update them only if they exist. 599 if variable == "VideoURLs" then601 if variable == "VideoURLs" or variable == "RingBuffer" then 600 602 params["user"] = username 601 603 params["pwd"] = password … … 610 612 fullUrl = url .."?".. query 611 613 if variable == "VideoURLs" then 612 value = value:gsub("w:(.-):", "w:".. fullUrl.. ":") 614 value = value:gsub("w:(.-):", "w:".. fullUrl.. ":", 1) 615 elseif variable == "RingBuffer" then 616 value = value:gsub("([%d,]*)/?.*", "%1/".. fullUrl, 1) 613 617 else 614 value = value:gsub("^/?(.*)", "/".. fullUrl )618 value = value:gsub("^/?(.*)", "/".. fullUrl, 1) 615 619 end 616 620 luup.log("VistaCamSD:Startup- Update variable: ".. variable)
Note: See TracChangeset
for help on using the changeset viewer.