stable-diffusion-webui/modules/ngrok.py

39 lines
1.6 KiB
Python
Raw Normal View History

2022-10-11 09:40:27 +00:00
from pyngrok import ngrok, conf, exception
2022-10-16 00:24:01 +00:00
def connect(token, port, region):
2022-11-10 12:42:41 +00:00
account = None
2022-12-14 18:59:33 +00:00
if token is None:
2022-10-11 09:40:27 +00:00
token = 'None'
2022-11-10 12:39:20 +00:00
else:
if ':' in token:
# token = authtoken:username:password
account = token.split(':')[1] + ':' + token.split(':')[-1]
token = token.split(':')[0]
2022-10-16 00:24:01 +00:00
config = conf.PyngrokConfig(
auth_token=token, region=region
)
# Guard for existing tunnels
existing = ngrok.get_tunnels(pyngrok_config=config)
if existing:
for established in existing:
# Extra configuration in the case that the user is also using ngrok for other tunnels
if established.config['addr'][-4:] == str(port):
public_url = existing[0].public_url
print(f'ngrok has already been connected to localhost:{port}! URL: {public_url}\n'
'You can use this link after the launch is complete.')
return
2022-10-11 09:40:27 +00:00
try:
2022-12-14 18:59:33 +00:00
if account is None:
2022-11-11 14:14:10 +00:00
public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True).public_url
2022-11-10 12:42:41 +00:00
else:
2022-11-11 14:14:10 +00:00
public_url = ngrok.connect(port, pyngrok_config=config, bind_tls=True, auth=account).public_url
2022-10-11 09:40:27 +00: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 09:48:27 +00:00
'You can use this link after the launch is complete.')