mirror of
https://gitee.com/konyshe/goodlink.git
synced 2025-09-26 20:51:22 +08:00
79 lines
2.2 KiB
Go
79 lines
2.2 KiB
Go
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:
|
|
// ...
|
|
}
|
|
}
|
|
}
|