WiiSOAP/ecs.go
Spotlight e588ba6e68
Refactor HTTP handling logic
This is an extraordinarily large commit, and in hindsight would have benefitied from being written separately.

To summarise:

-  Converts namespace URI parsing to a regex, instead of convoluted string logic
 - Removes per-request XML structures in favor of normalised XPath queries
 - Moves common variables for all requests to a k/v map of their name and contents, in order to reduce function parameter count
 - Changes the name of the ECS action "NotifiedETicketsSynced" to its hardcoded (tenseless) name, "NotifyETicketsSynced"
 - Improved properly reporting errors to the end user in areas
2020-08-16 23:06:09 -05:00

85 lines
2.9 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 ecsHandler(common map[string]string, doc *xmlquery.Node) (bool, string) {
timestamp := common["Timestamp"]
// All actions below are for ECS-related functions.
switch common["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 "CheckDeviceStatus":
//You need to POST some SOAP from WSC if you wanna get some, honey. ;3
fmt.Println("The request is valid! Responding...")
custom := fmt.Sprintf(`<Balance>
<Amount>2018</Amount>
<Currency>POINTS</Currency>
</Balance>
<ForceSyncTime>0</ForceSyncTime>
<ExtTicketTime>%s</ExtTicketTime>
<SyncTime>%s</SyncTime>`, timestamp, timestamp)
return formatSuccess(common, custom)
case "NotifyETicketsSynced":
// This is a disgusting request, but 20 dollars is 20 dollars. ;3
fmt.Println("The request is valid! Responding...")
return formatSuccess(common, "")
case "ListETickets":
// that's all you've got for me? ;3
fmt.Println("The request is valid! Responding...")
custom := fmt.Sprintf(`<ForceSyncTime>0</ForceSyncTime>
<ExtTicketTime>%s</ExtTicketTime>
<SyncTime>%s</SyncTime>`, timestamp, timestamp)
return formatSuccess(common, custom)
case "PurchaseTitle":
// If you wanna fun time, it's gonna cost ya extra sweetie... ;3
fmt.Println("The request is valid! Responding...")
custom := fmt.Sprintf(`<Balance>
<Amount>2018</Amount>
<Currency>POINTS</Currency>
</Balance>
<Transactions>
<TransactionId>00000000</TransactionId>
<Date>%s</Date>
<Type>PURCHGAME</Type>
</Transactions>
<SyncTime>%s</SyncTime>
<ETickets>00000000</ETickets>
<Certs>00000000</Certs>
<Certs>00000000</Certs>
<TitleId>00000000</TitleId>`, timestamp, timestamp)
return formatSuccess(common, custom)
default:
return false, "WiiSOAP can't handle this. Try again later or actually use a Wii instead of a computer."
}
}