-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
214 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
Version 2, December 2004 | ||
|
||
Copyright (C) 2004 Sam Hocevar <[email protected]> | ||
|
||
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||
|
||
0. You just DO WHAT THE FUCK YOU WANT TO. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# msp-py | ||
A minimalistic and fast Python handler for requests to the MSP API. | ||
|
||
## Installation | ||
Simply just clone the repository and install the requirements. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
""" | ||
This example shows how to login to MSP and send a authenticated request | ||
to the LoadActorDetailsExtended method. | ||
""" | ||
|
||
from msp import invoke_method, get_session_id, ticket_header | ||
|
||
# Set login credentials and server name | ||
USERNAME = "" | ||
PASSWORD = "" | ||
SERVER = "US" | ||
|
||
# Call the login method and retrieve the response | ||
code, resp = invoke_method( | ||
SERVER, | ||
"MovieStarPlanet.WebService.User.AMFUserServiceWeb.Login", | ||
[ | ||
USERNAME, | ||
PASSWORD, | ||
[], | ||
None, | ||
None, | ||
"MSP1-Standalone:XXXXXX" | ||
], | ||
get_session_id() | ||
) | ||
|
||
# Check if login was successful | ||
status = resp.get('loginStatus', {}).get('status') | ||
if status != "Success": | ||
print(f"Login failed, status: {status}") | ||
quit() | ||
|
||
# Retrieve the auth ticket and actor ID from the login response | ||
ticket = resp['loginStatus']['ticket'] | ||
actor_id = resp['loginStatus']['actor']['ActorId'] | ||
|
||
# Call the authenticated method and retrieve the response | ||
code, resp = invoke_method( | ||
SERVER, | ||
"MovieStarPlanet.WebService.UserSession.AMFUserSessionService.LoadActorDetailsExtended", | ||
[ | ||
ticket_header(ticket), | ||
actor_id | ||
], | ||
get_session_id() | ||
) | ||
|
||
# Print the response | ||
print(resp) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
""" | ||
A Python implementation to interact with the MSP API | ||
""" | ||
|
||
import hashlib | ||
import binascii | ||
import http.client | ||
import random | ||
import base64 | ||
from typing import List, Union | ||
from datetime import date, datetime | ||
from urllib.parse import urlparse | ||
from pyamf import remoting, ASObject, TypedObject, AMF3 | ||
|
||
|
||
def ticket_header(ticket: str) -> ASObject: | ||
""" | ||
Generate a ticket header for the given ticket | ||
""" | ||
|
||
marking_id = int(random.uniform(0.0, 0.1) * 1000) + 1 | ||
loc1bytes = str(marking_id).encode('utf-8') | ||
loc5 = hashlib.md5(loc1bytes).hexdigest() | ||
loc6 = binascii.hexlify(loc1bytes).decode() | ||
return ASObject({"Ticket": ticket + loc5 + loc6, "anyAttribute": None}) | ||
|
||
|
||
def calculate_checksum(arguments: Union[int, str, bool, bytes, List[Union[int, str, bool, bytes]], | ||
dict, date, datetime, ASObject, TypedObject]) -> str: | ||
""" | ||
Calculate the checksum for the given arguments | ||
""" | ||
|
||
checked_objects = {} | ||
no_ticket_value = "v1n3g4r" | ||
salt = "$CuaS44qoi0Mp2qp" | ||
|
||
def from_object(obj): | ||
if obj is None: | ||
return "" | ||
|
||
if isinstance(obj, (int, str, bool)): | ||
return str(obj) | ||
|
||
if isinstance(obj, bytes): | ||
return from_byte_array(obj) | ||
|
||
if isinstance(obj, (date, datetime)): | ||
return obj.strftime('%Y%m%d') | ||
|
||
if isinstance(obj, (list, dict)) and "Ticket" not in obj: | ||
return from_array(obj) | ||
|
||
return "" | ||
|
||
def from_byte_array(byte_array): | ||
if len(byte_array) <= 20: | ||
return binascii.hexlify(byte_array).decode('utf-8') | ||
|
||
bytes_to_check = [byte_array[int(len(byte_array) / 20 * i)] for i in range(20)] | ||
return binascii.hexlify(bytes(bytes_to_check)).decode('utf-8') | ||
|
||
def from_array(arr): | ||
result = "" | ||
for item in arr: | ||
if isinstance(item, (ASObject, TypedObject)): | ||
result += from_object(item) | ||
else: | ||
result += from_object_inner(item) | ||
return result | ||
|
||
def get_ticket_value(arr): | ||
for obj in arr: | ||
if isinstance(obj, ASObject) and "Ticket" in obj: | ||
ticket_str = obj["Ticket"] | ||
if ',' in ticket_str: | ||
return ticket_str.split(',')[5][:5] | ||
return no_ticket_value | ||
|
||
def from_object_inner(obj): | ||
result = "" | ||
if isinstance(obj, dict): | ||
for key in sorted(obj.keys()): | ||
if key not in checked_objects: | ||
result += from_object(obj[key]) | ||
checked_objects[key] = True | ||
else: | ||
result += from_object(obj) | ||
return result | ||
|
||
result_str = from_object_inner(arguments) + get_ticket_value(arguments) + salt | ||
return hashlib.sha1(result_str.encode()).hexdigest() | ||
|
||
|
||
def invoke_method(server: str, method: str, params: dict, session_id: str) -> tuple: | ||
""" | ||
Invoke a method on the MSP API | ||
""" | ||
|
||
req = remoting.Request(target=method, body=params) | ||
event = remoting.Envelope(AMF3) | ||
|
||
event.headers = remoting.HeaderCollection({ | ||
("sessionID", False, session_id), | ||
("needClassName", False, False), | ||
("id", False, calculate_checksum(params) | ||
)}) | ||
|
||
event['/1'] = req | ||
encoded_req = remoting.encode(event).getvalue() | ||
|
||
full_endpoint = f"https://ws-{server}.mspapis.com/Gateway.aspx?method={method}" | ||
conn = http.client.HTTPSConnection(urlparse(full_endpoint).hostname) | ||
|
||
headers = { | ||
"Referer": "app:/cache/t1.bin/[[DYNAMIC]]/2", | ||
"Accept": ("text/xml, application/xml, application/xhtml+xml, " | ||
"text/html;q=0.9, text/plain;q=0.8, text/css, image/png, " | ||
"image/jpeg, image/gif;q=0.8, application/x-shockwave-flash, " | ||
"video/mp4;q=0.9, flv-application/octet-stream;q=0.8, " | ||
"video/x-flv;q=0.7, audio/mp4, application/futuresplash, " | ||
"*/*;q=0.5, application/x-mpegURL"), | ||
"x-flash-version": "32,0,0,100", | ||
"Content-Length": str(len(encoded_req)), | ||
"Content-Type": "application/x-amf", | ||
"Accept-Encoding": "gzip, deflate", | ||
"User-Agent": "Mozilla/5.0 (Windows; U; en) AppleWebKit/533.19.4 " | ||
"(KHTML, like Gecko) AdobeAIR/32.0", | ||
"Connection": "Keep-Alive", | ||
} | ||
path = urlparse(full_endpoint).path | ||
query = urlparse(full_endpoint).query | ||
conn.request("POST", path + "?" + query, encoded_req, headers=headers) | ||
|
||
with conn.getresponse() as resp: | ||
resp_data = resp.read() if resp.status == 200 else None | ||
if resp.status != 200: | ||
return (resp.status, resp_data) | ||
return (resp.status, remoting.decode(resp_data)["/1"].body) | ||
|
||
|
||
def get_session_id() -> str: | ||
""" | ||
Generate a random session id | ||
""" | ||
|
||
session_id = ''.join(f'{random.randint(0, 15):x}' for _ in range(48)) | ||
session_id = session_id[:46] | ||
return base64.b64encode(session_id.encode()).decode() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Py3AMF==0.8.10 |