1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
| On Error Resume Next
Function FTPUpload(sSite, sUsername, sPassword, sLocalFile, sRemotePath)
'This script is provided under the Creative Commons license located
'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
'be used for commercial purposes with out the expressed written consent
'of NateRice.com
Const OpenAsDefault = -2
Const FailIfNotExist = 0
Const ForReading = 1
Const ForWriting = 2
Set oFTPScriptFSO = CreateObject("Scripting.FileSystemObject")
Set oFTPScriptShell = CreateObject("WScript.Shell")
sRemotePath = Trim(sRemotePath)
sLocalFile = Trim(sLocalFile)
'----------Path Checks---------
'Here we willcheck the path, if it contains
'spaces then we need to add quotes to ensure
'it parses correctly.
If InStr(sRemotePath, " ") > 0 Then
If Left(sRemotePath, 1) <> """" And Right(sRemotePath, 1) <> """" Then
sRemotePath = """" & sRemotePath & """"
End If
End If
If InStr(sLocalFile, " ") > 0 Then
If Left(sLocalFile, 1) <> """" And Right(sLocalFile, 1) <> """" Then
sLocalFile = """" & sLocalFile & """"
End If
End If
'Check to ensure that a remote path was
'passed. If it's blank then pass a "\"
If Len(sRemotePath) = 0 Then
'Please note that no premptive checking of the
'remote path is done. If it does not exist for some
'reason. Unexpected results may occur.
sRemotePath = "\"
End If
'Check the local path and file to ensure
'that either the a file that exists was
'passed or a wildcard was passed.
If InStr(sLocalFile, "*") Then
If InStr(sLocalFile, " ") Then
FTPUpload = "Error: Wildcard uploads do not work if the path contains a " & _
"space." & vbCRLF
FTPUpload = FTPUpload & "This is a limitation of the Microsoft FTP client."
Exit Function
End If
ElseIf Len(sLocalFile) = 0 Or Not oFTPScriptFSO.FileExists(sLocalFile) Then
'nothing to upload
FTPUpload = "Error: File Not Found."
Exit Function
End If
'--------END Path Checks---------
'build input file for ftp command
sFTPScript = sFTPScript & "USER " & sUsername & vbCRLF
sFTPScript = sFTPScript & sPassword & vbCRLF
sFTPScript = sFTPScript & "cd " & sRemotePath & vbCRLF
sFTPScript = sFTPScript & "binary" & vbCRLF
sFTPScript = sFTPScript & "prompt n" & vbCRLF
sFTPScript = sFTPScript & "put " & sLocalFile & vbCRLF
sFTPScript = sFTPScript & "quit" & vbCRLF & "quit" & vbCRLF & "quit" & vbCRLF
sFTPTemp = oFTPScriptShell.ExpandEnvironmentStrings("%TEMP%")
sFTPTempFile = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
sFTPResults = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
'Write the input file for the ftp command
'to a temporary file.
Set fFTPScript = oFTPScriptFSO.CreateTextFile(sFTPTempFile, True)
fFTPScript.WriteLine(sFTPScript)
fFTPScript.Close
Set fFTPScript = Nothing
oFTPScriptShell.Run "%comspec% /c FTP -n -s:" & sFTPTempFile & " " & sSite & _
" > " & sFTPResults, 0, TRUE
Wscript.Sleep 1000
'Check results of transfer.
Set fFTPResults = oFTPScriptFSO.OpenTextFile(sFTPResults, ForReading, _
FailIfNotExist, OpenAsDefault)
sResults = fFTPResults.ReadAll
fFTPResults.Close
oFTPScriptFSO.DeleteFile(sFTPTempFile)
oFTPScriptFSO.DeleteFile (sFTPResults)
If InStr(sResults, "226 Transfer complete.") > 0 Then
FTPUpload = True
ElseIf InStr(sResults, "File not found") > 0 Then
FTPUpload = "Error: File Not Found"
ElseIf InStr(sResults, "cannot log in.") > 0 Then
FTPUpload = "Error: Login Failed."
Else
FTPUpload = "Error: Unknown."
End If
Set oFTPScriptFSO = Nothing
Set oFTPScriptShell = Nothing
End Function
Function FTPDownload(sSite, sUsername, sPassword, sLocalPath, sRemotePath, _
sRemoteFile)
'This script is provided under the Creative Commons license located
'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
'be used for commercial purposes with out the expressed written consent
'of NateRice.com
Const OpenAsDefault = -2
Const FailIfNotExist = 0
Const ForReading = 1
Const ForWriting = 2
Set oFTPScriptFSO = CreateObject("Scripting.FileSystemObject")
Set oFTPScriptShell = CreateObject("WScript.Shell")
sRemotePath = Trim(sRemotePath)
sLocalPath = Trim(sLocalPath)
'----------Path Checks---------
'Here we will check the remote path, if it contains
'spaces then we need to add quotes to ensure
'it parses correctly.
If InStr(sRemotePath, " ") > 0 Then
If Left(sRemotePath, 1) <> """" And Right(sRemotePath, 1) <> """" Then
sRemotePath = """" & sRemotePath & """"
End If
End If
'Check to ensure that a remote path was
'passed. If it's blank then pass a "\"
If Len(sRemotePath) = 0 Then
'Please note that no premptive checking of the
'remote path is done. If it does not exist for some
'reason. Unexpected results may occur.
sRemotePath = "\"
End If
'If the local path was blank. Pass the current
'working direcory.
If Len(sLocalPath) = 0 Then
sLocalpath = oFTPScriptShell.CurrentDirectory
End If
If Not oFTPScriptFSO.FolderExists(sLocalPath) Then
'destination not found
FTPDownload = "Error: Local Folder Not Found."
Exit Function
End If
sOriginalWorkingDirectory = oFTPScriptShell.CurrentDirectory
oFTPScriptShell.CurrentDirectory = sLocalPath
'--------END Path Checks---------
'build input file for ftp command
sFTPScript = sFTPScript & "USER " & sUsername & vbCRLF
sFTPScript = sFTPScript & sPassword & vbCRLF
sFTPScript = sFTPScript & "cd " & sRemotePath & vbCRLF
sFTPScript = sFTPScript & "binary" & vbCRLF
sFTPScript = sFTPScript & "prompt n" & vbCRLF
sFTPScript = sFTPScript & "mget " & sRemoteFile & vbCRLF
sFTPScript = sFTPScript & "quit" & vbCRLF & "quit" & vbCRLF & "quit" & vbCRLF
sFTPTemp = oFTPScriptShell.ExpandEnvironmentStrings("%TEMP%")
sFTPTempFile = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
sFTPResults = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
'Write the input file for the ftp command
'to a temporary file.
Set fFTPScript = oFTPScriptFSO.CreateTextFile(sFTPTempFile, True)
fFTPScript.WriteLine(sFTPScript)
fFTPScript.Close
Set fFTPScript = Nothing
oFTPScriptShell.Run "%comspec% /c FTP -n -s:" & sFTPTempFile & " " & sSite & _
" > " & sFTPResults, 0, TRUE
Wscript.Sleep 1000
'Check results of transfer.
Set fFTPResults = oFTPScriptFSO.OpenTextFile(sFTPResults, ForReading, _
FailIfNotExist, OpenAsDefault)
sResults = fFTPResults.ReadAll
fFTPResults.Close
'oFTPScriptFSO.DeleteFile(sFTPTempFile)
'oFTPScriptFSO.DeleteFile (sFTPResults)
If InStr(sResults, "226 Transfer complete.") > 0 Then
FTPDownload = True
ElseIf InStr(sResults, "File not found") > 0 Then
FTPDownload = "Error: File Not Found"
ElseIf InStr(sResults, "cannot log in.") > 0 Then
FTPDownload = "Error: Login Failed."
Else
FTPDownload = "Error: Unknown."
End If
Set oFTPScriptFSO = Nothing
Set oFTPScriptShell = Nothing
End Function
Sub XmlMaint(MyDate, state, title, artist, length, filename)
strFile = "c:\scripts\now_playing.xml"
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set xmlDoc = CreateObject("Microsoft.XMLDOM")
' Si le fichier n'existe pas, on le crée et on l'uploade.
If Not (objFSO.FileExists(strFile)) Then
Set objIntro = xmlDoc.createProcessingInstruction("xml","version='1.0'")
xmlDoc.insertBefore objIntro, xmlDoc.childNodes(0)
Set objRoot = xmlDoc.createElement("now_playing")
xmlDoc.appendChild objRoot
Set songElement = xmlDoc.createElement("song")
If not (IsEmpty(title) Or IsNull(title)) Then
Set titleElement = xmlDoc.createElement("title")
titleElement.Text = title
songElement.appendChild(titleElement)
End if
If not(IsEmpty(artist) Or IsNull(artist)) Then
Set artistElement = xmlDoc.createElement("artist")
artistElement.Text = artist
songElement.appendChild(artistElement)
End If
Set timeElement = xmlDoc.createElement("time")
timeElement.Text = length
songElement.appendChild(timeElement)
Set filenameElement = xmlDoc.createElement("filename")
filenameElement.Text = filename
songElement.appendChild(filenameElement)
songElement.setAttribute "timestamp", Mydate 'variable from caller
objRoot.appendChild songElement
xmlDoc.Save strFile
call FTPUpload("adresse", "login", "password", "c:\scripts\now_playing.xml", "/www/tt/")
Set xmlDoc = Nothing
Else
'si le fichier existe, on verifie sa taille et on supprime le dernier node si taille > limite et on l'uploade.
Dim compteur
compteur = 0
Const Limite = 3000
'on recupère ancien filename et nombre de nodes
Set xmlDoc_NowPlaying = CreateObject("Microsoft.XMLDOM")
xmlDoc_NowPlaying.Async = "false"
xmlDoc_NowPlaying.Load(strFile)
For Each songElement In xmlDoc_NowPlaying.selectNodes("/now_playing/song")
compteur = compteur + 1
Next
old_filename = xmlDoc_NowPlaying.selectSingleNode("/now_playing/song/filename").text
Set xmlDoc_NowPlaying = Nothing
' si filename est différent de ancien filename
If filename <> old_filename then
If compteur > Limite then
Set xmlDoc = CreateObject("Microsoft.XMLDOM")
xmlDoc.async = False
xmlDoc.load(strFile)
Set objRoot = xmlDoc.documentElement
Set objExNode = objRoot.removeChild(objRoot.childNodes.item(compteur-1))
xmlDoc.save strFile
Set xmlDoc = Nothing
Set objRoot = Nothing
Set objExNode = Nothing
End If
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set xmlDoc = CreateObject("Microsoft.XMLDOM")
xmlDoc.async = False
xmlDoc.load(strFile)
Set objRoot = xmlDoc.documentElement 'grab root; start insertion
Set songElement = xmlDoc.createElement("song")
If not (IsEmpty(title) Or IsNull(title)) Then
Set titleElement = xmlDoc.createElement("title")
titleElement.Text = title
songElement.appendChild(titleElement)
Else
Set titleElement = xmlDoc.createElement("title")
songElement.appendChild(titleElement)
End if
If not(IsEmpty(artist) Or IsNull(artist)) Then
Set artistElement = xmlDoc.createElement("artist")
artistElement.Text = artist
songElement.appendChild(artistElement)
Else
Set artistElement = xmlDoc.createElement("artist")
songElement.appendChild(artistElement)
End If
Set timeElement = xmlDoc.createElement("time")
timeElement.Text = length
songElement.appendChild(timeElement)
Set filenameElement = xmlDoc.createElement("filename")
filenameElement.Text = filename
songElement.appendChild(filenameElement)
songElement.setAttribute "timestamp", MyDate 'variable from caller
objRoot.appendChild songElement
objRoot.insertBefore songElement, objRoot.childNodes.item(0)
xmlDoc.save strFile
Set xmlDoc = Nothing
debug = FTPUpload("adresse", "login", "password", "c:\scripts\now_playing.xml", "/www/tt/")
End if
End if
End Sub
Do
' Lecture status.xml depuis VLC
Dim cur_playing
Dim length
Dim state
Dim title
Dim artist
Dim filename
base64pw = "OnBhc3N3b3Jk" '":password" in base64
Set xmlDoc_VLC = CreateObject("Msxml2.XMLHTTP.6.0")
xmlDoc_VLC.Open "GET","http://localhost:8080/requests/status.xml", false, "", "password"
xmlDoc_VLC.setRequestHeader "Authorization", "Basic "& base64pw
xmlDoc_VLC.send()
state = Null
state = xmlDoc_VLC.responseXML.selectSingleNode("root/state").text
length = Null
length = xmlDoc_VLC.responseXML.selectSingleNode("root/length").text
title = Null
title = xmlDoc_VLC.responseXML.selectSingleNode("root/information/category/info[@name = 'title']").text
artist = Null
artist = xmlDoc_VLC.responseXML.selectSingleNode("root/information/category/info[@name = 'artist']").text
filename = Null
filename = xmlDoc_VLC.responseXML.selectSingleNode("root/information/category/info[@name = 'filename']").text
MyDate = now()
'mise à jour status lecteur'
Set objFSO=CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.CreateTextFile("c:\scripts\status_lecteur.txt",2) 'txt file must be ANSI
objFile.Write state
objFile.Close
call FTPUpload("adresse", "login", "password", "c:\scripts\status_lecteur.txt", "/www/tt/")
'mise à jour playlist
Call XmlMaint(Mydate, state, title, artist, length, filename)
WScript.Sleep 500
Loop |
Partager