2022-10-11 03:40:27 -06:00
|
|
|
from pyngrok import ngrok, conf, exception
|
|
|
|
|
2022-10-15 18:24:01 -06:00
|
|
|
def connect(token, port, region):
|
2022-11-10 05:42:41 -07:00
|
|
|
account = None
|
2022-12-14 11:59:33 -07:00
|
|
|
if token is None:
|
2022-10-11 03:40:27 -06:00
|
|
|
token = 'None'
|
2022-11-10 05:39:20 -07:00
|
|
|
else:
|
|
|
|
if ':' in token:
|
|
|
|
# token = authtoken:username:password
|
|
|
|
account = token.split(':')[1] + ':' + token.split(':')[-1]
|
|
|
|
token = token.split(':')[0]
|
|
|
|
|
2022-10-15 18:24:01 -06:00
|
|
|
config = conf.PyngrokConfig(
|
|
|
|
auth_token=token, region=region
|
|
|
|
)
|
2022-10-11 03:40:27 -06:00
|
|
|
try:
|
2022-12-14 11:59:33 -07:00
|
|
|
if account is None:
|
2022-11-11 07:14:10 -07:00
|
|
|
public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True).public_url
|
2022-11-10 05:42:41 -07:00
|
|
|
else:
|
2022-11-11 07:14:10 -07:00
|
|
|
public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True, auth=account).public_url
|
2022-10-11 03:40:27 -06:00
|
|
|
except exception.PyngrokNgrokError:
|
|
|
|
print(f'Invalid ngrok authtoken, ngrok connection aborted.\n'
|
|
|
|
f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken')
|
|
|
|
else:
|
|
|
|
print(f'ngrok connected to localhost:{port}! URL: {public_url}\n'
|
2022-10-11 03:48:27 -06:00
|
|
|
'You can use this link after the launch is complete.')
|