Changeset 68
- Timestamp:
- 2014-10-11 15:03:35 (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/I_DLNAMediaController1.xml ¶
r64 r68 18 18 local TASK_BUSY = 1 19 19 20 local VERA_LOCAL_IP 20 21 local VERA_IP 21 22 local VERA_WEB_PORT … … 1214 1215 end 1215 1216 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 1216 1226 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 1225 1228 VERA_WEB_PORT = 80 1226 1229 else … … 1233 1236 1234 1237 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 1235 1244 1236 1245 luup.call_delay("deferredDLNAStartup", 1, lul_device) … … 2131 2140 <action> 2132 2141 <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> 2133 2176 <name>NotifyRenderingChange</name> 2134 2177 <job> -
TabularUnified trunk/J_DLNAMediaController1.js ¶
r67 r68 27 27 prevSinkProtocols : undefined, 28 28 prevResultPlayback : undefined, 29 prevPatchInstalled : undefined, 29 30 30 31 prevOnlineState3 : undefined, … … 372 373 html += '<table cellspacing="10">'; 373 374 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>'; 375 384 html += '<tr>'; 376 385 html += '<td>'; … … 457 466 DLNA.prevProxy = undefined; 458 467 DLNA.prevResultDiscovery2 = undefined; 468 DLNA.prevPatchInstalled = undefined; 459 469 460 470 DLNA_refreshDiscovery(device); … … 1005 1015 resultDiscovery = ''; 1006 1016 } 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 1007 1025 if (modelName != DLNA.prevModelName 1008 1026 || url != DLNA.prevUrl 1009 1027 || onlineState != DLNA.prevOnlineState2 1010 1028 || proxy != DLNA.prevProxy 1011 || resultDiscovery != DLNA.prevResultDiscovery2) { 1029 || resultDiscovery != DLNA.prevResultDiscovery2 1030 || patchInstalled != DLNA.prevPatchInstalled) { 1012 1031 1013 1032 DLNA.prevModelName = modelName; … … 1016 1035 DLNA.prevProxy = proxy; 1017 1036 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 } 1018 1048 1019 1049 jQuery('#model').html(modelName); … … 1174 1204 var url = encodeURIComponent(jQuery('#TTSserverURL').val()); 1175 1205 DLNA_callAction(device, DLNA.DLNA_DMC_SID, 'SetupTTS', {'DefaultLanguage':language, 'DefaultEngine':engine, 'OSXTTSServerURL':url} ); 1206 } 1207 1208 function DLNA_installPatch(device) 1209 { 1210 DLNA_callAction(device, DLNA.DLNA_DMC_SID, 'InstallDiscoveryPatch', {} ); 1211 } 1212 1213 function DLNA_uninstallPatch(device) 1214 { 1215 DLNA_callAction(device, DLNA.DLNA_DMC_SID, 'UninstallDiscoveryPatch', {} ); 1176 1216 } 1177 1217 -
TabularUnified trunk/L_DLNAUPnPUtility.lua ¶
r63 r68 8 8 -- 5 Second timeout 9 9 http.TIMEOUT = 5 10 11 local IPTABLES_PARAM = "-d 224.0.0.0/4 -j SNAT --to-source %s" 12 local IPTABLES_CMD = "iptables -t nat -%s POSTROUTING %s" 10 13 11 14 local 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" … … 302 305 -- UPnP discovery 303 306 -------------------------------------------------------------------------------- 307 308 309 function 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 317 end 318 319 320 function 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 327 end 328 329 330 function 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 337 end 304 338 305 339 -
TabularUnified trunk/S_DLNAMediaController1.xml ¶
r61 r68 233 233 </action> 234 234 <action> 235 <name>InstallDiscoveryPatch</name> 236 </action> 237 <action> 238 <name>UninstallDiscoveryPatch</name> 239 </action> 240 <action> 235 241 <name>NotifyRenderingChange</name> 236 242 <argumentList>
Note: See TracChangeset
for help on using the changeset viewer.