forked from prestonTao/upnp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExternalIPAddress.go
78 lines (73 loc) · 2.21 KB
/
ExternalIPAddress.go
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
package upnp
import (
"encoding/xml"
"io/ioutil"
// "log"
"net/http"
"strconv"
"strings"
)
type ExternalIPAddress struct {
upnp *Upnp
}
func (this *ExternalIPAddress) Send() bool {
request := this.BuildRequest()
response, _ := http.DefaultClient.Do(request)
resultBody, _ := ioutil.ReadAll(response.Body)
if response.StatusCode == 200 {
this.resolve(string(resultBody))
return true
}
return false
}
func (this *ExternalIPAddress) BuildRequest() *http.Request {
//请求头
header := http.Header{}
header.Set("Accept", "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2")
header.Set("SOAPAction", `"urn:schemas-upnp-org:service:WANIPConnection:1#GetExternalIPAddress"`)
header.Set("Content-Type", "text/xml")
header.Set("Connection", "Close")
header.Set("Content-Length", "")
//请求体
body := Node{Name: "SOAP-ENV:Envelope",
Attr: map[string]string{"xmlns:SOAP-ENV": `"http://schemas.xmlsoap.org/soap/envelope/"`,
"SOAP-ENV:encodingStyle": `"http://schemas.xmlsoap.org/soap/encoding/"`}}
childOne := Node{Name: `SOAP-ENV:Body`}
childTwo := Node{Name: `m:GetExternalIPAddress`,
Attr: map[string]string{"xmlns:m": `"urn:schemas-upnp-org:service:WANIPConnection:1"`}}
childOne.AddChild(childTwo)
body.AddChild(childOne)
bodyStr := body.BuildXML()
//请求
request, _ := http.NewRequest("POST", "http://"+this.upnp.Gateway.Host+this.upnp.CtrlUrl,
strings.NewReader(bodyStr))
request.Header = header
request.Header.Set("Content-Length", strconv.Itoa(len([]byte(body.BuildXML()))))
return request
}
//NewExternalIPAddress
func (this *ExternalIPAddress) resolve(resultStr string) {
inputReader := strings.NewReader(resultStr)
decoder := xml.NewDecoder(inputReader)
ISexternalIP := false
for t, err := decoder.Token(); err == nil; t, err = decoder.Token() {
switch token := t.(type) {
// 处理元素开始(标签)
case xml.StartElement:
name := token.Name.Local
if name == "NewExternalIPAddress" {
ISexternalIP = true
}
// 处理元素结束(标签)
case xml.EndElement:
// 处理字符数据(这里就是元素的文本)
case xml.CharData:
if ISexternalIP == true {
this.upnp.GatewayOutsideIP = string([]byte(token))
return
}
default:
// ...
}
}
}