stable-diffusion-webui/modules/ngrok.py

39 lines
1.6 KiB
Python
Raw Normal View History

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
token, username, password = token.split(':', 2)
account = f"{username}:{password}"
2022-11-10 05:39:20 -07:00
2022-10-15 18:24:01 -06: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 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.')