1
0
personal-data/playstation.py

56 lines
2.5 KiB
Python
Raw Normal View History

2023-12-10 23:27:56 +00:00
from data import Scraper
import secrets
def scrape_played_last(session):
url = "https://web.np.playstation.com/api/graphql/v1/op?operationName=getUserGameList&variables=%7B%22limit%22%3A50%2C%22categories%22%3A%22ps4_game%2Cps5_native_game%22%7D&extensions=%7B%22persistedQuery%22%3A%7B%22version%22%3A1%2C%22sha256Hash%22%3A%22e0136f81d7d1fb6be58238c574e9a46e1c0cc2f7f6977a08a5a46f224523a004%22%7D%7D"
headers = {
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0",
"Accept": "application/json",
"Accept-Language": "en-US,en;q=0.5",
"content-type": "application/json",
"X-PSN-App-Ver": "my-playstation/0.1.0-20230720235210-hotfix-1-g1e9f07ff-1e9f07ff247eafea4d9d9236f73863cb9cd5d3e8",
"X-PSN-Correlation-Id": "bc7a39b1-a99c-478b-9494-d2fddf189875",
"apollographql-client-name": "my-playstation",
"apollographql-client-version": "0.1.0-20230720235210-hotfix-1-g1e9f07ff",
"X-PSN-Request-Id": "8ad64653-d8b5-4941-b565-b5536c9853df",
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "same-site",
"Pragma": "no-cache",
"Cache-Control": "no-cache",
2023-12-10 23:42:51 +00:00
#"Cookie": secrets.PLAYSTATION_COM_COOKIES,
2023-12-10 23:27:56 +00:00
'Accept-Encoding': 'gzip, deflate, br',
'Referer': 'https://library.playstation.com/',
'Origin': 'https://library.playstation.com',
'DNT': '1',
'Connection': 'keep-alive',
'TE': 'trailers',
}
result = session.get(url, headers = headers)
result.raise_for_status()
print(result.json())
games_data = result.json()['data']['gameLibraryTitlesRetrieve']['games']
print(games_data)
for game_data in games_data:
yield {
# Important fields
'game.name': game_data['name'],
'me.last_played_time': game_data['lastPlayedDateTime'],
'playstation.product_id': game_data['productId'],
# Secondary fields
'playstation.concept_id': game_data['conceptId'],
'playstation.title_id': game_data['titleId'],
'playstation.entitlement_id': game_data['entitlementId'],
'me.acquired_by_playstation_membership': game_data['membership'],
'game.platform': game_data['platform'],
'game.icon': game_data['image']['url'],
}
SCRAPERS = [
Scraper(scrape_played_last, 'games_played_playstation', deduplicate = True)
]