Skip to content

Instantly share code, notes, and snippets.

@timothyclemansinsea
Created October 28, 2015 20:06
Show Gist options
  • Save timothyclemansinsea/a65b0682cc3b0a3b6da4 to your computer and use it in GitHub Desktop.
Save timothyclemansinsea/a65b0682cc3b0a3b6da4 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
######################################################################
# Copyright (c) 2013, William Stein, Ondrej Certik, All rights reserved.
# 2-clause BSD:
# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the SageMath Project.
######################################################################
import json, os, random, BaseHTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
info = json.loads(open(os.path.join(os.environ['SAGEMATHCLOUD'], 'info.json')).read())
project_id = info['project_id']
ip = info['location']['host']
def random_port():
# get an available port; a race condition is possible, but very, very unlikely.
while True:
port = random.randint(1025,65536)
a = os.popen("netstat -ano|grep %s|grep LISTEN"%port).read()
if len(a) < 5:
return port
port = random_port()
base = "%s/%s/port/%s/"%(info['base_url'], project_id, port)
print "*"*80 + '\n'
print " The HTTP server is running at \n"
print " https://cloud.sagemath.com%s\n"%base
print " All collaborators on this project may access the server at the"
print " above SSL-encrypted URL, but nobody else can access it."
print '\n\n' + "*"*80 + '\n\n'
from flask import Flask
app = Flask(__name__)
@app.route('%s/' % (base))
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run(host=ip, port=port)
print "Serving HTTP on", sa[0], "port", sa[1], "base", base
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment