Question and answer system for the web
Quiz Master
Catalyst is the Ruby on Rails of the Perl universe. When you are developing a web application like a quiz, using the MVC framework is really convenient and helps keep the underlying components cleanly separated.
Whether guessthelogo.com asks you to pick the right company logo out of strikingly similar variations, or Food.aol.com invites visitors to identify candy bars by their cross sections (Figure 1), an entertaining quiz is always welcome during a hard day at work. You can expect your colleagues to forward the URLs, and comparing scores later on will mix up the hacking order and trigger fascinating discussions.
Are you interested in compiling your own quiz? Figure 2 shows our home-made quiz at work. To make the code reusable, the application retrieves the questions and multiple choice answers from a YAML file (Figure 3). The example uses a selection of questions from the USA immigration test. For example, applicants need to know how many stars are displayed on the US flag and what they symbolize [4].
The web application parses the YAML file and displays each question individually on a new page. Whereas the YAML file always lists the correct answer first, the application will display possible choices in random order to keep things interesting.
The implementation is not particularly sophisticated, but there are quite a few things to think about: nicely designed HTML with dynamically managed fields, session management between the individual questions to prevent the application from forgetting the user's score, and a results page that tells the user the final score and invites them to try the next round (Figure 4). Finally, the server should never trust the client, because the client just might cheat.
Catalyst Framework
The Catalyst Framework [5] helps Perl programmers with projects of this kind by automatically creating a program code skeleton to which the developer simply adds the application-specific components.
The fact that the system gets split up into the model (data representation), view (HTML display), and controller (flow control), has proven to be very effective in web application development, as it supports clear code separation and thus easier maintenance.
Installing the Framework
The Catalyst modules are available from CPAN. Because of their sheer number, I recommend downloading a prebuilt package. On a Debian-based system, the command line
sudo apt-get install libcatalyst-perl libcatalyst-modules-perl
installs all the modules and a bunch of dependencies. To avoid having to start from scratch, call catalyst.pl QuizShow from the command line and Catalyst creates a new QuizShow directory for the newly created application. It drops about 30 files into various subdirectories to let you run the whole enchilada straight away. Among other things, this includes a Makefile.PL file, to package the application CPAN-style, predefined configuration files, module skeletons to fill in application-specific code, and various scripts to create new parts and launch the application in different ways.
Later, you can run it as a CGI script or using Mod_perl on an Apache server. During development, you might like to launch the web server included with the distribution:
cd QuizShow script/quizshow_server.pl
This immediately launches the server as shown in Figure 5 and outputs nicely formatted information on the server configuration and the URL at which the browser can reach it.
The default setting is http://localhost:3000. If you enter it in a browser, you get to see the Catalyst welcome page. Production systems will later use an Apache server instead.
Http with a Memory
When a browser communicates with a web server, neither of them saves state between individual requests, unless session cookies and server-side session files take care of it explicitly. A quiz that forgets the score between questions wouldn't be all that useful.
Session management is boilerplate logic, and it's easy to get wrong, so Catalyst offers a turn-key solution, again as a Debian package.
The following command line installs the required Perl modules:
sudo apt-get install libcatalyst-plugin-session-fastmmap-perl
To make sure the quiz automatically feeds a session cookie to the browser on first contact, besides allocating a cache server-side and storing user data in that space, you need to change the code
use Catalyst qw/-Debug ConfigLoader Static::Simple/;
in the automatically generated lib/QuizShow.pm file to:
use Catalyst qw/-Debug ConfigLoader Static::Simple Session Session::State::Cookie Session::Store::FastMmap/;
This allows the application to access a Perl hash with session information by simply calling the Catalyst context object's session() method. Catalyst stores this data automatically under the session ID of the Catalyst browser cookie and manages it on the server without requiring any development effort.
Of course, this approach will only work if the browser talks to the same server for each new request, and not to an arbitrary member of a server farm. Catalyst offers database-based sessions for more complex configurations to handle this.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.