Example #1
0
def check_device_status(cfg,
                        message_id="12345678901234567",
                        device_token="123456789abcdef0123456789abcdef0"):
    soap = """<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:ecs="urn:ecs.wsapi.broadon.com">
<SOAP-ENV:Body>
<ecs:CheckDeviceStatus xsi:type="ecs:CheckDeviceStatusRequestType">
  <ecs:Version>{cfg.ecshop_version}</ecs:Version>
  <ecs:MessageId>ECSHOP-{cfg.device_id}-{message_id}</ecs:MessageId>
  <ecs:DeviceId>{cfg.device_id}</ecs:DeviceId>
  <ecs:DeviceToken>WT-{device_token}</ecs:DeviceToken>
  <ecs:AccountId>{cfg.account_id}</ecs:AccountId>
  <ecs:Region>{cfg.region}</ecs:Region>
  <ecs:Country>{cfg.country}</ecs:Country>
  <ecs:Language>{cfg.language}</ecs:Language>
  <ecs:SerialNo>{cfg.serial_no}</ecs:SerialNo>
</ecs:CheckDeviceStatus>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>""".format(cfg=cfg,
                               message_id=message_id,
                               device_token=device_token)
    return EC.send_ecshop(
        "https://ecs.shop.wii.com/ecs/services/ECommerceSOAP", soap,
        "urn:ecs.wsapi.broadon.com/CheckDeviceStatus", cfg)
Example #2
0
def purchase_title(title_id,
                   item_id,
                   cfg,
                   message_id="12345678901234567",
                   device_token="Ab3dEF/gHIjKLMnoPqrST"):
    soap = """<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:ecs="urn:ecs.wsapi.broadon.com">
<SOAP-ENV:Body>
<ecs:PurchaseTitle xsi:type="ecs:PurchaseTitleRequestType">
  <ecs:Version>{cfg.ecshop_version}</ecs:Version>
  <ecs:MessageId>ECSHOP-{cfg.device_id}-{message_id}</ecs:MessageId>
  <ecs:DeviceId>{cfg.device_id}</ecs:DeviceId>
  <ecs:DeviceToken>ST-{device_token}</ecs:DeviceToken>
  <ecs:AccountId>{cfg.account_id}</ecs:AccountId>
  <ecs:Region>{cfg.region}</ecs:Region>
  <ecs:Country>{cfg.country}</ecs:Country>
  <ecs:Language>{cfg.language}</ecs:Language>
  <ecs:SerialNo>{cfg.serial_no}</ecs:SerialNo>
  <ecs:ItemId>{item_id}</ecs:ItemId>
  <ecs:Price>
    <ecs:Amount>0</ecs:Amount>
    <ecs:Currency>POINTS</ecs:Currency>
  </ecs:Price>
  <ecs:Discount>0</ecs:Discount>
  <ecs:Payment>
    <ecs:PaymentMethod>ACCOUNT</ecs:PaymentMethod>
    <ecs:AccountPayment>
      <ecs:AccountNumber>{cfg.account_id}</ecs:AccountNumber>
      <ecs:DeviceToken>{device_token}</ecs:DeviceToken>
    </ecs:AccountPayment>
  </ecs:Payment>
  <ecs:DeviceCert>{cfg.device_cert}</ecs:DeviceCert>
  <ecs:TitleId>{title_id}</ecs:TitleId>
  <ecs:Limits>
    <ecs:Limits>0</ecs:Limits>
    <ecs:LimitKind>PR</ecs:LimitKind>
  </ecs:Limits>
</ecs:PurchaseTitle>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>""".format(title_id=title_id,
                               item_id=item_id,
                               cfg=cfg,
                               message_id=message_id,
                               device_token=device_token)
    return EC.send_ecshop(
        "https://ecs.shop.wii.com/ecs/services/ECommerceSOAP", soap,
        "urn:ecs.wsapi.broadon.com/PurchaseTitle", cfg)