File: fortune.rpy

package info (click to toggle)
twisted 25.5.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,560 kB
  • sloc: python: 203,171; makefile: 200; sh: 92; javascript: 36; xml: 31
file content (51 lines) | stat: -rw-r--r-- 1,579 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
This example demonstrates how to render the output of a system process to a
twisted web server.

In order to run this, you need to have fortune installed.  Fortune is a simple
game that displays a random message from a database of quotations. You will need
to change the path of the fortune program if it's not in the "/usr/game"
directory.

To test the script, copy fortune.rpy to any
directory, let's say /var/www/html/

Now, start your Twisted web server:
    $ twistd -n web --path /var/www/html/

And visit http://127.0.0.1:8080/fortune.rpy with a web browser.
"""

from twisted.web.resource import Resource
from twisted.web import server
from twisted.internet import utils


class FortuneResource(Resource):
    """
    This resource will only respond to HEAD & GET requests.
    """

    # Link your fortune program to /usr/games or change the path.
    fortune = "/usr/games/fortune"

    def render_GET(self, request):
        """
        Get a fortune and serve it as the response to this request.

        Use L{utils.getProcessOutput}, which spawns a process and returns a
        Deferred which fires with its output.
        """
        request.write(b"<pre>\n")
        deferred = utils.getProcessOutput(self.fortune)
        deferred.addCallback(lambda s: (request.write(s + b"\n"), request.finish()))
        deferred.addErrback(
            lambda s: (request.write(str(s).encode("utf8")), request.finish())
        )
        return server.NOT_DONE_YET


resource = FortuneResource()