Server-Side Scripting ===================== In this section we cover more elements of forms to make interactive web sites. A Simple Web Calculator ----------------------- To introduce a checkbox and a select element, consider an interface to a simple calculator. With the select, the user can choose the operator. The checkbox is used to convert the operands to floats and force floating-point arithmetic in case the operands are integers. The layout of the web interface is illustrated in :numref:`figwebcalc`. .. _figwebcalc: .. figure:: ./figwebcalc.png :align: center A web interface for a simple calculator. The elements in the web interface are the following: 1. two input elements for two operands, 2. a select element for the operator, 3. a checkbox for converting operands to float, and 4. submit and reset buttons. The Python script takes the values of the form and prints the result in HTML format in the browser window. The output is shown in :numref:`figwebcalc2`. .. _figwebcalc2: .. figure:: ./figwebcalc2.png :align: center The result of the calculation executed by a Python script. The Python script writes the result, formatted inside an ``h1`` header. The HTML form defines the elements and points to the Python script that will process the output. In designing this form, we choose the names of the values which will be used to retrieve the values in the Python script. The entire HTML code is below. :: MCS 275 : a calculator
1st operand operator 2nd operand

    convert operands to floats        

The HTML code above defines a table, with two rows and three columns. The first row in the table defines the headers which are the labels for the first operand, the operator, and the second operand. The second row then contains in the first and third column the input text element for the user to enter the values. The middle column on the second row contains the select element, to allow the user to select the type of operator. In the select element, the ``name = "operator"`` field defines the name ``operator`` for use in the Python script. The ``option value = "+">+`` displays the ``+`` (the last symbol) as the choice for the user to select. The ``value = "+"`` will be the value of the operator in the form if the user selects the first operator. The script ``calculate.py`` does the processing of the values submitted in the form. The code for ``calculate.py`` is below. :: #!/usr/bin/python import cgi FORM = cgi.FieldStorage() print("Content-Type: text/html\n") ERROR = False try: XVAL = FORM['operand1'].value except KeyError: print("please enter first operand") ERROR = True try: YVAL = FORM['operand2'].value except KeyError: print("please enter second operand") ERROR = True if not ERROR: try: CONV = eval(FORM['convert'].value) except: CONV = False OPER = FORM['operator'].value if not CONV: EXPR = XVAL + ' ' + OPER + ' ' + YVAL else: EXPR = str(float(XVAL)) + ' ' + OPER \ + ' ' + str(float(YVAL)) RESULT = EXPR + ' = ' + str(eval(EXPR)) print("") print("

%s

" % RESULT) print("") A Login Form ------------ To introduce the radio button and the password text element, let us consider an elementary login form. The form is shown in :numref:`figweblogin`. .. _figweblogin: .. figure:: ./figweblogin.png :align: center A simple login form. The elements in the login form shown in :numref:`figweblogin` are 1. two input elements for name and password, and 2. a radio button for new or returning user. The result of the user hitting the submit button is shown in :numref:`figweblogin2`. .. _figweblogin2: .. figure:: ./figweblogin2.png :align: center The result of the Python script. The Python script checks whether the user is new or returning and confirms the name. The HTML code for the form in the file ``login_form.html`` is listed below. :: MCS 275 : login form

please register

enter your name:

new user returning user

enter your password:

The script ``login_form.py`` defines the action of the form. :: #!/usr/bin/python """ Gets login name and password. """ from ast import literal_eval import cgi FORM = cgi.FieldStorage() print("Content-Type: text/plain\n") ERROR = False try: NAME = FORM['login'].value except KeyError: print("please enter your name") ERROR = True try: WORD = FORM['password'].value except KeyError: print("please enter a password") ERROR = True if not ERROR: if literal_eval(FORM['new'].value): print('welcome new user ' + NAME) else: print('welcome back ' + NAME) Observe the frequent use of exception handlers. The ``literal_eval`` will parse the string passed in the value of the form into the proper Python object. Passing Text and Code --------------------- The textarea element allows to the user to submit a text paragraph, illustrated in :numref:`figgivewords`. .. _figgivewords: .. figure:: ./figgivewords.png :align: center Asking for a text paragraph. The script just displays the submitted text as plain text, as illustrated in :numref:`figgivewords2`. .. _figgivewords2: .. figure:: ./figgivewords2.png :align: center Writing the text paragraph. The element textarea is used in ``give_words.html`` listed next. :: MCS 275 : enter some text

write a paragraph

The ``sometext`` in the HTML code above is used in the script ``give_words.py`` listed below. :: #!/usr/bin/python """ Illustration of processing a textarea. """ import cgi FORM = cgi.FieldStorage() print("Content-Type: text/plain\n") try: TEXT = FORM['sometext'].value print("your paragraph is \n" + TEXT) except KeyError: print("please enter some words") As an application of the textarea element, consider the running a piece of Python code, passed via a form as illustrated in :numref:`figrunpython`. .. _figrunpython: .. figure:: ./figrunpython.png :align: center A form to submit Python code. An example of the result of submitted code is shown in :numref:`figrunpython2`. .. _figrunpython2: .. figure:: ./figrunpython2.png :align: center The output of the submitted Python code. The HTML code in ``run_python.html`` is below. :: MCS 275 : run python

run python

give some Python code below:

The script ``run_python.py`` is listed below. :: #!/usr/bin/python """ Takes the textarea from run_python.html and runs the code in that element. """ import cgi from os import system FORM = cgi.FieldStorage() print("Content-Type: text/plain\n") ERROR = False try: CODE = FORM['code'].value print("your code is \n\n" + CODE) except KeyError: print("please enter code") ERROR = True if not ERROR: FILE = open('/tmp/code.py', 'w') FILE.write(CODE) FILE.close() print("\n... running the code ...\n") CMD = 'python /tmp/code.py > /tmp/out' RETVAL = system(CMD) if RETVAL != 0: print("the code has an error") else: FILE = open('/tmp/out', 'r') OUTP = FILE.readlines() print("the output is \n\n", OUTP[0]) Exercises --------- 1. Modify the script ``give_words.py`` so it writes the words typed in the textarea in reverse order. 2. Replace the radio buttons in ``login_form.html`` by one CheckBox ``"new user"``. 3. Add to ``login_form.html`` a select element offering the options: ``instructor``, ``student``, and ``staff``. 4. Extend the script ``login_form.py`` so it maintains a password file. For every user there is one line: two strings (name and password) separated by a colon.