/usr/share/amsn/soap.tcl is in amsn-data 0.98.9-1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ::Version::setSubversionId {$Id: soap.tcl 11996 2010-03-11 07:25:26Z tjikkun $}
package require snit
snit::type SOAPRequest {
option -url ""
option -action ""
option -xml ""
option -callback ""
option -headers [list]
option -header ""
option -body ""
option -ttl 5
variable wait 0
variable status ""
variable last_error ""
variable fault_code ""
variable fault_string ""
variable fault_detail ""
variable xml ""
variable redirected 0
variable http_req ""
variable ttl 0
destructor {
set status "canceled"
if { $http_req != "" } {
::PGU::Cancel $http_req
set http_req ""
}
}
method SendSOAPRequest { } {
if {$ttl > $options(-ttl)} {
error "Too many retried"
}
if { $options(-url) == "" || ($options(-xml) == "" && ($options(-header) == "" || $options(-body) == "")) } {
error "SOAPRequest incomplete"
}
status_log "Sending SOAP request to $options(-url) with action $options(-action)" green
if { $options(-action) != "" } {
set headers [linsert $options(-headers) 0 SOAPAction $options(-action)]
} else {
set headers $options(-headers)
}
set proxy [::config::getKey proxy]
set proxy_host [lindex $proxy 0]
set proxy_port [lindex $proxy 1]
if {[::config::getKey connectiontype] == "direct" } {
::http::config -proxyhost "" -proxyport ""
http::register https 443 [list ::tls::socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1]
http::register http 80 ::socket
} elseif {[::config::getKey connectiontype] == "http" } {
# haha, ok, this is easy, http connection means the http gateway, which means no need to set up a proxy! :D
::http::config -proxyhost "" -proxyport ""
http::register https 443 [list ::tls::socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1]
http::register http 80 ::socket
} elseif { [::config::getKey connectiontype] == "proxy" && [::config::getKey proxytype] == "http" } {
if {$proxy_host == "" } {
::http::config -proxyhost "" -proxyport ""
} else {
if { $proxy_port == "" } {
set proxy_port 8080
}
::http::config -proxyhost $proxy_host -proxyport $proxy_port
}
if { [::config::getKey proxyauthenticate] } {
set proxy_user [::config::getKey proxyuser]
set proxy_pass [::config::getKey proxypass]
set auth [string map {"\n" "" } [base64::encode ${proxy_user}:${proxy_pass}]]
set headers [linsert $headers 0 "Proxy-Authorization" "Basic $auth"]
}
http::register https 443 HTTPsecureSocket
http::register http 80 ::socket
} elseif { [::config::getKey connectiontype] == "proxy" && [::config::getKey proxytype] == "socks5" } {
if {$proxy_host == "" } {
::http::config -proxyhost "" -proxyport ""
} else {
if { $proxy_port == "" } {
set proxy_port 1080
}
::http::config -proxyhost $proxy_host -proxyport $proxy_port
}
http::register https 443 SOCKSsecureSocket
http::register http 80 SOCKSSocket
} else {
::config::setKey connectiontype "direct"
::http::config -proxyhost "" -proxyport ""
http::register https 443 [list ::tls::socket -cadir $::CERT_DIR -command ::amsn::checkcert -request 1 -require 1]
http::register http 80 ::socket
}
::http::config -accept "*/*" -useragent "MSMSGS"
if { $http_req != "" } {
::PGU::Cancel $http_req
set http_req ""
}
if {$options(-header) != "" && $options(-body) != ""} {
set xml {<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">}
append xml {<soap:Header>}
append xml $options(-header)
append xml {</soap:Header>}
append xml {<soap:Body>}
append xml $options(-body)
append xml {</soap:Body>}
append xml {</soap:Envelope>}
} else {
set xml $options(-xml)
}
set xml [encoding convertto utf-8 $xml]
# Catch it in case we have no internet..
if { ![catch { set http_req [::PGU::Add $options(-url) [list $self GotSoapReply] $xml "text/xml; charset=utf-8" $headers] } res] } {
#puts "Sending HTTP request : $options(-url)\nSOAPAction: $options(-action)\n\n$xml"
if {[info exists ::soap_debug] && $::soap_debug != ""} {
set filename "[$self GetDebugFilename]_req.xml"
catch {set fd [open [file join $::soap_debug $filename] w]}
catch {puts $fd [xml2prettyxml $xml]}
catch {close $fd}
}
incr ttl
if { $options(-callback) == "" && $redirected } {
tkwait variable [myvar wait]
}
} elseif {[catch {$self configure}] == 0} {
# In case of an error, report it back.. make sure that our object wasn't destroyed...
set status "PostFailed"
set last_error $res
status_log "Failed to send SOAP request to $options(-url) with action $options(-action) : ..." green
status_log "... status=$status, LastError=$last_error" green
if {$options(-callback) != "" } {
if {[catch {eval $options(-callback) $self} result]} {
bgerror $result
}
}
} else {
# If our object was destroyed, don't return our name.
return ""
}
return $self
}
method GotSoapReply { token } {
if {$token != "" } {
#puts "Received HTTP answer : [::http::code $token] [::http::status $token]\n[::http::data $token]"
if {[info exists ::soap_debug] && $::soap_debug != ""} {
set filename "[$self GetDebugFilename]_resp.xml"
catch {set fd [open [file join $::soap_debug $filename] w]}
#catch {puts $fd [$self configure]}
catch {puts $fd [xml2prettyxml [::http::data $token]]}
catch {close $fd}
}
set last_error [::http::error $token]
#shouldn't work if ncode == 500, MS servers ...
if { [::http::status $token] == "ok" && [::http::ncode $token] >= 200 && [::http::ncode $token] < 300 || [::http::ncode $token] == 500} {
set status "success"
if {[catch {set xml [xml2list [::http::data $token]] } res ] } {
set status "InvalidXML"
set last_error "$res"
} else {
set fault [GetXmlNode $xml "soap:Envelope:soap:Body:soap:Fault"]
set faultcode [GetXmlEntry $xml "soap:Envelope:soap:Body:soap:Fault:faultcode"]
set faultstring [GetXmlEntry $xml "soap:Envelope:soap:Body:soap:Fault:faultstring"]
set faultdetail [GetXmlEntry $xml "soap:Envelope:soap:Body:soap:Fault:detail:errorcode"]
if {$fault == "" } {
set fault [GetXmlNode $xml "S:Envelope:S:Fault"]
set faultcode [GetXmlEntry $xml "S:Envelope:S:Fault:faultcode"]
set faultstring [GetXmlEntry $xml "S:Envelope:S:Fault:faultstring"]
set faultdetail [GetXmlEntry $xml "S:Envelope:S:Fault:detail:errorcode"]
}
if { $fault != "" } {
set status "fault"
set last_error $faultcode
set fault_code $faultcode
set fault_string $faultstring
set fault_detail $faultdetail
}
}
} elseif { [::http::status $token] == "ok" } {
upvar #0 $token state
set meta $state(meta)
array set meta_array $meta
if {[info exists meta_array(Location)]} {
set options(-url) $meta_array(Location)
::http::cleanup $token
set redirected 1
if {[catch {$self SendSOAPRequest} err] } {
set last_error $err
set status [::http::ncode $token]
} else {
return
}
} else {
set last_error [::http::code $token]
set status [::http::ncode $token]
}
} else {
set status [::http::status $token]
set last_error [::http::code $token]
}
set http_stat [::http::status $token]
::http::cleanup $token
} else {
set last_error [::PGU::GetLastError]
set http_stat error
set status error
}
incr [myvar wait]
if {$http_stat != "reset"} {
status_log "Received answer to SOAP request sent to $options(-url) with action $options(-action) : ..." green
status_log "... status=$status, LastError=$last_error, FaultDetail=$fault_detail" green
if {$options(-callback) != "" } {
if {[catch {eval $options(-callback) $self} result]} {
bgerror $result
}
}
}
}
method GetResponse { } {
return $xml
}
method GetStatus { } {
return $status
}
method GetLastError { } {
return $last_error
}
method GetFaultCode { } {
return $fault_code
}
method GetFaultString { } {
return $fault_string
}
method GetFaultDetail { } {
return $fault_detail
}
method GetDebugFilename {} {
if {$options(-action) != ""} {
set filename $options(-action)
} else {
set filename $options(-url)
}
return [file tail $filename]
}
}
|