mirror of
https://wiilab.wiimart.org/wiimart/WiiSOAP
synced 2025-09-05 21:11:02 +02:00
88 lines
2.7 KiB
Go
88 lines
2.7 KiB
Go
// Copyright (C) 2018 CornierKhan1
|
|
//
|
|
// SOAP-GO-OSC is Open Shop Channel's SOAP Server Software, designed specifically to handle Wii Shop Channel SOAP.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see http://www.gnu.org/licenses/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/xml"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
// The Check struct(ure) will attempt to retrieve all the namespace data.
|
|
// Assuming that namespaces that don't exist are given a "nil", the first result that isn't a "nil" will be used as the template response.
|
|
const (
|
|
// Header is a generic XML header suitable for use with the output of Marshal.
|
|
// This is not automatically added to any output of this package,
|
|
// it is provided as a convenience.
|
|
Header = `<?xml version="1.0" encoding="UTF-8"?>` + "\n"
|
|
)
|
|
|
|
type CDS struct {
|
|
}
|
|
type NETS struct {
|
|
}
|
|
|
|
func main() {
|
|
fmt.Println("Starting HTTP connection (Port 8000)...")
|
|
http.HandleFunc("/", handler) // each request calls handler
|
|
log.Fatal(http.ListenAndServe(":8000", nil))
|
|
}
|
|
|
|
func handler(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Println("Incoming request! (Processing...)")
|
|
body, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
http.Error(w, "Error reading request body",
|
|
http.StatusInternalServerError)
|
|
}
|
|
|
|
// The following block of code here is a cluster of disgust.
|
|
|
|
// CheckDeviceStatus
|
|
if bytes.Contains(body, []byte("CheckDeviceStatus")) {
|
|
fmt.Println("CDS.")
|
|
CDS := CDS{}
|
|
err = xml.Unmarshal([]byte(body), &CDS)
|
|
if err != nil {
|
|
fmt.Println("...or not. Bad or incomplete request. (End processing.)")
|
|
fmt.Fprint(w, "You need to POST some SOAP from WSC if you wanna get some, honey. ;)")
|
|
fmt.Printf("error: %v", err)
|
|
return
|
|
} else {
|
|
|
|
// NotifyETicketsSynced.
|
|
if bytes.Contains(body, []byte("NotifyETicketsSynced")) {
|
|
fmt.Println("NETS")
|
|
NETS := NETS{}
|
|
err = xml.Unmarshal([]byte(body), &NETS)
|
|
if err != nil {
|
|
fmt.Println("...or not. Bad or incomplete request. (End processing.)")
|
|
fmt.Fprint(w, "You need to POST some SOAP from WSC if you wanna get some, honey. ;)")
|
|
fmt.Printf("error: %v", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
}
|
|
fmt.Println(body)
|
|
}
|
|
}
|