Changeset 68


Ignore:
Timestamp:
2014-10-11 15:03:35 (10 years ago)
Author:
lolodomo
Message:

New ability to install/uninstall a patch for UPnP discovery

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/I_DLNAMediaController1.xml

    r64 r68  
    1818  local TASK_BUSY = 1 
    1919 
     20  local VERA_LOCAL_IP 
    2021  local VERA_IP 
    2122  local VERA_WEB_PORT 
     
    12141215    end 
    12151216 
     1217    -- 
     1218    -- Acquire the IP Address of Vera itself, needed for the Say method later on. 
     1219    -- Note: We're assuming Vera is connected via it's WAN Port to the DLNA Media Renderer 
     1220    -- 
     1221    local stdout = io.popen("GetNetworkState.sh ip_wan") 
     1222    VERA_LOCAL_IP = stdout:read("*a") 
     1223    stdout:close() 
     1224    debug("DLNAStartup: Vera IP Address=" .. VERA_LOCAL_IP) 
     1225 
    12161226    if (routerIp == "") then 
    1217         -- 
    1218         -- Acquire the IP Address of Vera itself, needed for the Say method later on. 
    1219         -- Note: We're assuming Vera is connected via it's WAN Port to the DLNA Media Renderer 
    1220         -- 
    1221         local stdout = io.popen("GetNetworkState.sh ip_wan") 
    1222         VERA_IP = stdout:read("*a") 
    1223         stdout:close() 
    1224         debug("DLNAStartup: Vera IP Address=" .. VERA_IP) 
     1227        VERA_IP = VERA_LOCAL_IP 
    12251228        VERA_WEB_PORT = 80 
    12261229    else 
     
    12331236 
    12341237    iconURL = PLUGIN_ICON:format(VERA_IP, VERA_WEB_PORT) 
     1238 
     1239    if (upnp.isDiscoveryPatchInstalled(VERA_LOCAL_IP)) then 
     1240        luup.variable_set(DLNA_DMC_SID, "DiscoveryPatchInstalled", "1", lul_device) 
     1241    else 
     1242        luup.variable_set(DLNA_DMC_SID, "DiscoveryPatchInstalled", "0", lul_device) 
     1243    end 
    12351244 
    12361245    luup.call_delay("deferredDLNAStartup", 1, lul_device) 
     
    21312140  <action> 
    21322141    <serviceId>urn:dlna-org:serviceId:DLNAMediaController1</serviceId> 
     2142    <name>InstallDiscoveryPatch</name> 
     2143    <run> 
     2144      if (upnp.installDiscoveryPatch(VERA_LOCAL_IP)) then 
     2145          log("Discovery patch now installed") 
     2146      else 
     2147          log("Discovery patch installation failed") 
     2148      end 
     2149      if (upnp.isDiscoveryPatchInstalled(VERA_LOCAL_IP)) then 
     2150          luup.variable_set(DLNA_DMC_SID, "DiscoveryPatchInstalled", "1", lul_device) 
     2151      else 
     2152          luup.variable_set(DLNA_DMC_SID, "DiscoveryPatchInstalled", "0", lul_device) 
     2153      end 
     2154    </run> 
     2155  </action> 
     2156 
     2157  <action> 
     2158    <serviceId>urn:dlna-org:serviceId:DLNAMediaController1</serviceId> 
     2159    <name>UninstallDiscoveryPatch</name> 
     2160    <run> 
     2161      if (upnp.uninstallDiscoveryPatch(VERA_LOCAL_IP)) then 
     2162          log("Discovery patch now uninstalled") 
     2163      else 
     2164          log("Discovery patch uninstallation failed") 
     2165      end 
     2166      if (upnp.isDiscoveryPatchInstalled(VERA_LOCAL_IP)) then 
     2167          luup.variable_set(DLNA_DMC_SID, "DiscoveryPatchInstalled", "1", lul_device) 
     2168      else 
     2169          luup.variable_set(DLNA_DMC_SID, "DiscoveryPatchInstalled", "0", lul_device) 
     2170      end 
     2171    </run> 
     2172  </action> 
     2173 
     2174  <action> 
     2175    <serviceId>urn:dlna-org:serviceId:DLNAMediaController1</serviceId> 
    21332176    <name>NotifyRenderingChange</name> 
    21342177    <job> 
  • TabularUnified trunk/J_DLNAMediaController1.js

    r67 r68  
    2727    prevSinkProtocols : undefined, 
    2828    prevResultPlayback : undefined, 
     29    prevPatchInstalled : undefined, 
    2930 
    3031    prevOnlineState3 : undefined, 
     
    372373    html += '<table cellspacing="10">'; 
    373374    html += '<tr><td colspan=2>Push "discover" button, then select your Media Renderer in the list and finally push "Select" button.'; 
    374     html += '<BR>If UPnP discovery is not working, fill in your DMR description URL and finally push "Select" button.</td></tr>'; 
     375    html += '<BR>If UPnP discovery is not working, you can try to install the patch or fill in your DMR description URL and finally push "Select" button.</td></tr>'; 
     376    html += '<tr>'; 
     377    html += '<td>Discovery patch:</td>'; 
     378    html += '<td>'; 
     379    html += '<label id="patch"/>'; 
     380    html += '<button id="install" type="button" style="margin-left: 10px; background-color:' + DLNA.buttonBgColor + '; color: white; height: 25px; width: 75px; -moz-border-radius: 6px; -webkit-border-radius: 6px; -khtml-border-radius: 6px; border-radius: 6px" onclick="DLNA_installPatch('+device+');">Install</button>'; 
     381    html += '<button id="uninstall" type="button" style="margin-left: 10px; background-color:' + DLNA.buttonBgColor + '; color: white; height: 25px; width: 75px; -moz-border-radius: 6px; -webkit-border-radius: 6px; -khtml-border-radius: 6px; border-radius: 6px" onclick="DLNA_uninstallPatch('+device+');">Uninstall</button>'; 
     382    html += '</td>'; 
     383    html += '</tr>'; 
    375384    html += '<tr>'; 
    376385    html += '<td>'; 
     
    457466    DLNA.prevProxy = undefined; 
    458467    DLNA.prevResultDiscovery2 = undefined; 
     468    DLNA.prevPatchInstalled = undefined; 
    459469 
    460470    DLNA_refreshDiscovery(device); 
     
    10051015        resultDiscovery = ''; 
    10061016    } 
     1017    var patchInstalled = get_device_state(device, DLNA.DLNA_DMC_SID, "DiscoveryPatchInstalled", 1); 
     1018    if (patchInstalled == "1") { 
     1019        patchInstalled = "Installed"; 
     1020    } 
     1021    else { 
     1022        patchInstalled = "Not installed"; 
     1023    } 
     1024 
    10071025    if (modelName != DLNA.prevModelName 
    10081026        || url != DLNA.prevUrl 
    10091027        || onlineState != DLNA.prevOnlineState2 
    10101028        || proxy != DLNA.prevProxy 
    1011         || resultDiscovery != DLNA.prevResultDiscovery2) { 
     1029        || resultDiscovery != DLNA.prevResultDiscovery2 
     1030        || patchInstalled != DLNA.prevPatchInstalled) { 
    10121031 
    10131032        DLNA.prevModelName = modelName; 
     
    10161035        DLNA.prevProxy = proxy; 
    10171036        DLNA.prevResultDiscovery2 = resultDiscovery; 
     1037        DLNA.prevPatchInstalled = patchInstalled; 
     1038 
     1039        jQuery('#patch').html(patchInstalled); 
     1040        if (patchInstalled == 'Installed') { 
     1041            jQuery('#install').get(0).disabled = true; 
     1042            jQuery('#uninstall').get(0).disabled = false; 
     1043        } 
     1044        else { 
     1045            jQuery('#install').get(0).disabled = false; 
     1046            jQuery('#uninstall').get(0).disabled = true; 
     1047        } 
    10181048 
    10191049        jQuery('#model').html(modelName); 
     
    11741204    var url = encodeURIComponent(jQuery('#TTSserverURL').val()); 
    11751205    DLNA_callAction(device, DLNA.DLNA_DMC_SID, 'SetupTTS', {'DefaultLanguage':language, 'DefaultEngine':engine, 'OSXTTSServerURL':url} ); 
     1206} 
     1207 
     1208function DLNA_installPatch(device) 
     1209{ 
     1210    DLNA_callAction(device, DLNA.DLNA_DMC_SID, 'InstallDiscoveryPatch', {} ); 
     1211} 
     1212 
     1213function DLNA_uninstallPatch(device) 
     1214{ 
     1215    DLNA_callAction(device, DLNA.DLNA_DMC_SID, 'UninstallDiscoveryPatch', {} ); 
    11761216} 
    11771217 
  • TabularUnified trunk/L_DLNAUPnPUtility.lua

    r63 r68  
    88-- 5 Second timeout 
    99http.TIMEOUT = 5 
     10 
     11local IPTABLES_PARAM = "-d 224.0.0.0/4 -j SNAT --to-source %s" 
     12local IPTABLES_CMD = "iptables -t nat -%s POSTROUTING %s" 
    1013 
    1114local UPNP_DISCOVERY = "M-SEARCH * HTTP/1.1\r\nHOST: 239.255.255.250:1900\r\nMAN: \"ssdp:discover\"\r\nMX: 5\r\nST: %s\r\n\r\n" 
     
    302305-- UPnP discovery 
    303306-------------------------------------------------------------------------------- 
     307 
     308 
     309function isDiscoveryPatchInstalled(ip) 
     310    local cmd = IPTABLES_CMD:format("S", "") 
     311    cmd = cmd .. "| grep \"^-A POSTROUTING " .. IPTABLES_PARAM:format(ip):gsub("%.", "\\.") .. "\"" 
     312    if (os.execute(cmd) == 0) then 
     313        return true 
     314    else 
     315        return false 
     316    end 
     317end 
     318 
     319 
     320function installDiscoveryPatch(ip) 
     321    local resu = isDiscoveryPatchInstalled(ip) 
     322    if (resu == false) then 
     323        os.execute(IPTABLES_CMD:format("I", IPTABLES_PARAM:format(ip))) 
     324        resu = isDiscoveryPatchInstalled(ip) 
     325    end 
     326    return resu 
     327end 
     328 
     329 
     330function uninstallDiscoveryPatch(ip) 
     331    local resu = isDiscoveryPatchInstalled(ip) 
     332    if (resu == true) then 
     333        os.execute(IPTABLES_CMD:format("D", IPTABLES_PARAM:format(ip))) 
     334        resu = isDiscoveryPatchInstalled(ip) 
     335    end 
     336    return not resu 
     337end 
    304338 
    305339 
  • TabularUnified trunk/S_DLNAMediaController1.xml

    r61 r68  
    233233    </action> 
    234234    <action> 
     235      <name>InstallDiscoveryPatch</name> 
     236    </action> 
     237    <action> 
     238      <name>UninstallDiscoveryPatch</name> 
     239    </action> 
     240    <action> 
    235241      <name>NotifyRenderingChange</name> 
    236242      <argumentList> 
Note: See TracChangeset for help on using the changeset viewer.