This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
python-aternos/python_aternos/atjsparse.py

63 lines
1.5 KiB
Python
Raw Normal View History

2022-07-01 13:28:39 +03:00
"""Parsing and executing JavaScript code"""
2022-01-06 18:57:26 +03:00
import base64
import regex
import js2py
2022-03-17 09:24:58 +03:00
# Thanks to http://regex.inginf.units.it/
arrowexp = regex.compile(r'\w[^\}]*+')
2022-02-09 12:07:24 +03:00
2022-06-23 14:13:56 +03:00
def to_ecma5_function(f: str) -> str:
"""Converts a ECMA6 function
to ECMA5 format (without arrow expressions)
Args:
f (str): ECMA6 function
2022-06-23 14:13:56 +03:00
Returns:
ECMA5 function
2022-06-23 14:13:56 +03:00
"""
f = regex.sub(r'/\*.+?\*/', '', f)
2022-06-23 14:13:56 +03:00
match = arrowexp.search(f)
conv = '(function(){' + match.group(0) + '})()'
return regex.sub(
r'(?:s|\(s\)) => s.split\([\'"]{2}\).reverse\(\).join\([\'"]{2}\)',
'function(s){return s.split(\'\').reverse().join(\'\')}',
conv
)
def atob(s: str) -> str:
2022-07-01 13:28:39 +03:00
"""Decodes base64 string
Args:
s (str): Encoded data
Returns:
Decoded string
2022-07-01 13:28:39 +03:00
"""
2022-06-23 14:13:56 +03:00
return base64.standard_b64decode(str(s)).decode('utf-8')
def exec_js(f: str) -> js2py.EvalJs:
2022-06-23 14:13:56 +03:00
"""Executes a JavaScript function
Args:
f (str): ECMA6 function
Returns:
JavaScript interpreter context
2022-06-23 14:13:56 +03:00
"""
ctx = js2py.EvalJs({'atob': atob})
ctx.execute('window.document = { };')
ctx.execute('window.Map = function(_i){ };')
ctx.execute('window.setTimeout = function(_f,_t){ };')
ctx.execute('window.setInterval = function(_f,_t){ };')
ctx.execute('window.encodeURIComponent = function(_s){ };')
ctx.execute(to_ecma5_function(f))
return ctx