mirror of
https://wiilab.wiimart.org/wiimart/WiiSOAP
synced 2025-09-05 21:11:02 +02:00

This allows the opportunity to have various handler methods for inserting XML data, instead of a jungle between properly parsing and string-based prayer.
100 lines
3.0 KiB
Go
100 lines
3.0 KiB
Go
// Copyright (C) 2018-2020 CornierKhan1
|
|
//
|
|
// WiiSOAP is 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 (
|
|
"fmt"
|
|
"github.com/antchfx/xmlquery"
|
|
)
|
|
|
|
func iasHandler(e Envelope, doc *xmlquery.Node) (bool, string) {
|
|
|
|
// All actions below are for IAS-related functions.
|
|
switch e.Action() {
|
|
// TODO: Make the case functions cleaner. (e.g. Should the response be a variable?)
|
|
// TODO: Update the responses so that they query the SQL Database for the proper information (e.g. Device Code, Token, etc).
|
|
|
|
case "CheckRegistration":
|
|
serialNo, err := getKey(doc, "SerialNumber")
|
|
if err != nil {
|
|
return e.ReturnError(5, "not good enough for me. ;3", err)
|
|
}
|
|
|
|
fmt.Println("The request is valid! Responding...")
|
|
e.AddKVNode("OriginalSerialNumber", serialNo)
|
|
e.AddKVNode("DeviceStatus", "R")
|
|
break
|
|
|
|
case "GetChallenge":
|
|
fmt.Println("The request is valid! Responding...")
|
|
break
|
|
|
|
case "GetRegistrationInfo":
|
|
accountId, err := getKey(doc, "AccountId")
|
|
if err != nil {
|
|
return e.ReturnError(7, "how dirty. ;3", err)
|
|
}
|
|
|
|
country, err := getKey(doc, "Country")
|
|
if err != nil {
|
|
return e.ReturnError(7, "how dirty. ;3", err)
|
|
}
|
|
|
|
fmt.Println("The request is valid! Responding...")
|
|
e.AddKVNode("AccountId", accountId)
|
|
e.AddKVNode("DeviceToken", "00000000")
|
|
e.AddKVNode("DeviceTokenExpired", "false")
|
|
e.AddKVNode("Country", country)
|
|
e.AddKVNode("ExtAccountId", "")
|
|
e.AddKVNode("DeviceCode", "0000000000000000")
|
|
e.AddKVNode("DeviceStatus", "R")
|
|
// This _must_ be POINTS.
|
|
e.AddKVNode("Currency", "POINTS")
|
|
break
|
|
|
|
case "Register":
|
|
accountId, err := getKey(doc, "AccountId")
|
|
if err != nil {
|
|
return e.ReturnError(8, "disgustingly invalid. ;3", err)
|
|
}
|
|
|
|
country, err := getKey(doc, "Country")
|
|
if err != nil {
|
|
return e.ReturnError(8, "disgustingly invalid. ;3", err)
|
|
}
|
|
|
|
fmt.Println("The request is valid! Responding...")
|
|
e.AddKVNode("AccountId", accountId)
|
|
e.AddKVNode("DeviceToken", "00000000")
|
|
e.AddKVNode("Country", country)
|
|
e.AddKVNode("ExtAccountId", "")
|
|
e.AddKVNode("DeviceCode", "0000000000000000")
|
|
break
|
|
|
|
case "Unregister":
|
|
// how abnormal... ;3
|
|
fmt.Println("The request is valid! Responding...")
|
|
break
|
|
|
|
default:
|
|
return false, "WiiSOAP can't handle this. Try again later or actually use a Wii instead of a computer."
|
|
}
|
|
|
|
return e.ReturnSuccess()
|
|
}
|