001.
<JOB>
002.
<COMMENT>
003.
************************************************************
004.
bit.ly : shorten.wsf
005.
: shorten.php を呼び出して url を得る
006.
007.
?url=URLエンコードされたURL
008.
戻り値 : URL
009.
: エラーの場合は error という文字列が返ります
010.
************************************************************
011.
</COMMENT>
012.
013.
<OBJECT id=
"Stream"
progid=
"ADODB.Stream"
/>
014.
<OBJECT id=
"Stream2"
progid=
"ADODB.Stream"
/>
015.
<OBJECT id=
"StreamBin"
progid=
"ADODB.Stream"
/>
016.
<OBJECT id=
"objHTTP"
progid=
"Msxml2.XMLHTTP"
/>
017.
018.
<SCRIPT language=VBScript>
019.
020.
021.
022.
strUrl =
"http://lightbox.on.coocan.jp/"
023.
024.
025.
str =
"https://自ドメイン/shorten.php?url="
026.
str = str & rfc3986_convert(URLEncode(strUrl))
027.
028.
Call
objHTTP.Open(
"GET"
,str,
False
)
029.
Call
objHTTP.Send(str)
030.
031.
strUrl = objHTTP.responseText
032.
033.
Wscript.Echo strUrl
034.
035.
036.
MsgBox(
"処理が終了しました "
)
037.
038.
039.
040.
041.
042.
Function
URLEncode(str)
043.
044.
Stream.Open
045.
Stream.Charset =
"shift_jis"
046.
047.
Stream.WriteText str
048.
049.
Stream.Position = 0
050.
051.
Stream2.Open
052.
Stream2.Charset =
"utf-8"
053.
054.
Stream.CopyTo Stream2
055.
Stream.Close
056.
057.
058.
Stream2.Position = 0
059.
060.
061.
StreamBin.Open
062.
StreamBin.Type = 1
063.
064.
065.
Stream2.CopyTo StreamBin
066.
Stream2.Close
067.
068.
069.
StreamBin.Position = 0
070.
071.
Buffer =
""
072.
StreamBin.Read(3)
073.
Do
while not StreamBin.EOS
074.
LineBuffer = StreamBin.Read(16)
075.
076.
For
i = 1 to LenB( LineBuffer )
077.
CWork = MidB(LineBuffer,i,1)
078.
Cwork = AscB(Cwork)
079.
Cwork = Hex(Cwork)
080.
Cwork = Ucase(Cwork)
081.
if Len(Cwork) = 1 then
082.
Buffer = Buffer &
"%0"
& Cwork
083.
else
084.
Buffer = Buffer &
"%"
& Cwork
085.
end if
086.
Next
087.
088.
Loop
089.
090.
StreamBin.Close
091.
092.
URLEncode = Buffer
093.
094.
End
Function
095.
096.
097.
098.
099.
Function
rfc3986_convert(str)
100.
101.
Dim
strResult,I,strWork
102.
103.
strResult = str
104.
105.
strResult = Replace(strResult,
"%2D"
,
"-"
)
106.
strResult = Replace(strResult,
"%2E"
,
"."
)
107.
108.
109.
For
I = &H30 to &H39
110.
strWork = Hex(I)
111.
strWork =
"%"
& Ucase(strWork)
112.
strResult = Replace(strResult,strWork, Chr(I))
113.
Next
114.
115.
116.
For
I = &H41 to &H5A
117.
strWork = Hex(I)
118.
strWork =
"%"
& Ucase(strWork)
119.
strResult = Replace(strResult,strWork, Chr(I))
120.
Next
121.
122.
strResult = Replace(strResult,
"%5F"
,
"_"
)
123.
124.
125.
For
I = &H61 to &H7A
126.
strWork = Hex(I)
127.
strWork =
"%"
& Ucase(strWork)
128.
strResult = Replace(strResult,strWork, Chr(I))
129.
Next
130.
131.
strResult = Replace(strResult,
"%7E"
,
"~"
)
132.
133.
rfc3986_convert = strResult
134.
135.
End
Function
136.
137.
</SCRIPT>
138.
</JOB>