Changeset 60


Ignore:
Timestamp:
2013-11-05 17:10:38 (11 years ago)
Author:
mcvflorin
Message:

Added RingBuffer variable handling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/UI7/I_VistaCamSD.xml

    r59 r60  
    3131 
    3232        -- List of camera variables which may contain credentials tokens (placeholders) 
    33         local VARIABLES = { "URL", "DirectStreamingURL", "VideoURLs" } 
     33        local VARIABLES = { "URL", "DirectStreamingURL", "VideoURLs", "RingBuffer" } 
    3434 
    3535        ---------------------------------------------------------------------------------------------------------------- 
     
    572572                        if variable == "VideoURLs" then 
    573573                            fullUrl = value:match("w:(.-):") 
     574                        elseif variable == "RingBuffer" then 
     575                            fullUrl = value:match("[%d,]*/?(.*)") 
    574576                        else 
    575577                            fullUrl = value:match("^/?(.*)") 
     
    597599                        -- For the VideoURLs variable the user and pwd parameters are mandatory. 
    598600                        -- For the other variables we update them only if they exist. 
    599                         if variable == "VideoURLs" then 
     601                        if variable == "VideoURLs" or variable == "RingBuffer" then 
    600602                            params["user"] = username 
    601603                            params["pwd"] = password 
     
    610612                            fullUrl = url .."?".. query 
    611613                            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) 
    613617                            else 
    614                                 value = value:gsub("^/?(.*)", "/".. fullUrl) 
     618                                value = value:gsub("^/?(.*)", "/".. fullUrl, 1) 
    615619                            end 
    616620                            luup.log("VistaCamSD:Startup- Update variable: ".. variable) 
Note: See TracChangeset for help on using the changeset viewer.