.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is turned on, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{ . if \nF \{ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Fear. Run. Save yourself. No user-serviceable parts. . \" fudge factors for nroff and troff .if n \{\ . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] \fP .\} .if t \{\ . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff .if n \{\ . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} .if t \{\ . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' .ds 8 \h'\*(#H'\(*b\h'-\*(#H' .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] .ds ae a\h'-(\w'a'u*4/10)'e .ds Ae A\h'-(\w'A'u*4/10)'E . \" corrections for vroff .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' . \" for low resolution devices (crt and lpr) .if \n(.H>23 .if \n(.V>19 \ \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} .rm #[ #] #H #V #F C .\" ======================================================================== .\" .IX Title "PERLFAQ9 1" .TH PERLFAQ9 1 "2014-12-27" "perl v5.20.2" "Perl Programmers Reference Guide" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" perlfaq9 \- Web, Email and Networking .SH "DESCRIPTION" .IX Header "DESCRIPTION" This section deals with questions related to running web sites, sending and receiving email as well as general networking. .SS "Should I use a web framework?" .IX Subsection "Should I use a web framework?" Yes. If you are building a web site with any level of interactivity (forms / users / databases), you will want to use a framework to make handling requests and responses easier. .PP If there is no interactivity then you may still want to look at using something like Template Toolkit or Plack::Middleware::TemplateToolkit so maintenance of your \s-1HTML\s0 files (and other assets) is easier. .SS "Which web framework should I use?" .IX Xref "framework CGI.pm CGI Catalyst Dancer" .IX Subsection "Which web framework should I use?" There is no simple answer to this question. Perl frameworks can run everything from basic file servers and small scale intranets to massive multinational multilingual websites that are the core to international businesses. .PP Below is a list of a few frameworks with comments which might help you in making a decision, depending on your specific requirements. Start by reading the docs, then ask questions on the relevant mailing list or \s-1IRC\s0 channel. .IP "Catalyst" 4 .IX Item "Catalyst" Strongly object-oriented and fully-featured with a long development history and a large community and addon ecosystem. It is excellent for large and complex applications, where you have full control over the server. .IP "Dancer" 4 .IX Item "Dancer" Young and free of legacy weight, providing a lightweight and easy to learn \s-1API.\s0 Has a growing addon ecosystem. It is best used for smaller projects and very easy to learn for beginners. .IP "Mojolicious" 4 .IX Item "Mojolicious" Fairly young with a focus on \s-1HTML5\s0 and real-time web technologies such as WebSockets. .IP "Web::Simple" 4 .IX Item "Web::Simple" Currently experimental, strongly object-oriented, built for speed and intended as a toolkit for building micro web apps, custom frameworks or for tieing together existing Plack-compatible web applications with one central dispatcher. .PP All of these interact with or use Plack which is worth understanding the basics of when building a website in Perl (there is a lot of useful Plack::Middleware ). .SS "What is Plack and \s-1PSGI\s0?" .IX Subsection "What is Plack and PSGI?" \&\s-1PSGI\s0 is the Perl Web Server Gateway Interface Specification, it is a standard that many Perl web frameworks use, you should not need to understand it to build a web site, the part you might want to use is Plack. .PP Plack is a set of tools for using the \s-1PSGI\s0 stack. It contains middleware components, a reference server and utilities for Web application frameworks. Plack is like Ruby's Rack or Python's Paste for \s-1WSGI.\s0 .PP You could build a web site using Plack and your own code, but for anything other than a very basic web site, using a web framework (that uses Plack) is a better option. .SS "How do I remove \s-1HTML\s0 from a string?" .IX Subsection "How do I remove HTML from a string?" Use HTML::Strip, or HTML::FormatText which not only removes \s-1HTML\s0 but also attempts to do a little simple formatting of the resulting plain text. .SS "How do I extract URLs?" .IX Subsection "How do I extract URLs?" HTML::SimpleLinkExtor will extract URLs from \s-1HTML,\s0 it handles anchors, images, objects, frames, and many other tags that can contain a \s-1URL.\s0 If you need anything more complex, you can create your own subclass of HTML::LinkExtor or HTML::Parser. You might even use HTML::SimpleLinkExtor as an example for something specifically suited to your needs. .PP You can use URI::Find to extract URLs from an arbitrary text document. .SS "How do I fetch an \s-1HTML\s0 file?" .IX Subsection "How do I fetch an HTML file?" (contributed by brian d foy) .PP Use the libwww-perl distribution. The LWP::Simple module can fetch web resources and give their content back to you as a string: .PP .Vb 1 \& use LWP::Simple qw(get); \& \& my $html = get( "http://www.example.com/index.html" ); .Ve .PP It can also store the resource directly in a file: .PP .Vb 1 \& use LWP::Simple qw(getstore); \& \& getstore( "http://www.example.com/index.html", "foo.html" ); .Ve .PP If you need to do something more complicated, you can use LWP::UserAgent module to create your own user-agent (e.g. browser) to get the job done. If you want to simulate an interactive web browser, you can use the WWW::Mechanize module. .SS "How do I automate an \s-1HTML\s0 form submission?" .IX Subsection "How do I automate an HTML form submission?" If you are doing something complex, such as moving through many pages and forms or a web site, you can use WWW::Mechanize. See its documentation for all the details. .PP If you're submitting values using the \s-1GET\s0 method, create a \s-1URL\s0 and encode the form using the \f(CW\*(C`query_form\*(C'\fR method: .PP .Vb 2 \& use LWP::Simple; \& use URI::URL; \& \& my $url = url(\*(AqL; \& $url\->query_form(module => \*(AqDB_File\*(Aq, readme => 1); \& $content = get($url); .Ve .PP If you're using the \s-1POST\s0 method, create your own user agent and encode the content appropriately. .PP .Vb 2 \& use HTTP::Request::Common qw(POST); \& use LWP::UserAgent; \& \& my $ua = LWP::UserAgent\->new(); \& my $req = POST \*(AqL, \& [ module => \*(AqDB_File\*(Aq, readme => 1 ]; \& my $content = $ua\->request($req)\->as_string; .Ve .SS "How do I decode or create those %\-encodings on the web?" .IX Xref "URI URI::Escape RFC 2396" .IX Subsection "How do I decode or create those %-encodings on the web?" Most of the time you should not need to do this as your web framework, or if you are making a request, the \s-1LWP\s0 or other module would handle it for you. .PP To encode a string yourself, use the URI::Escape module. The \f(CW\*(C`uri_escape\*(C'\fR function returns the escaped string: .PP .Vb 1 \& my $original = "Colon : Hash # Percent %"; \& \& my $escaped = uri_escape( $original ); \& \& print "$escaped\en"; # \*(AqColon%20%3A%20Hash%20%23%20Percent%20%25\*(Aq .Ve .PP To decode the string, use the \f(CW\*(C`uri_unescape\*(C'\fR function: .PP .Vb 1 \& my $unescaped = uri_unescape( $escaped ); \& \& print $unescaped; # back to original .Ve .PP Remember not to encode a full \s-1URI,\s0 you need to escape each component separately and then join them together. .SS "How do I redirect to another page?" .IX Subsection "How do I redirect to another page?" Most Perl Web Frameworks will have a mechanism for doing this, using the Catalyst framework it would be: .PP .Vb 2 \& $c\->res\->redirect($url); \& $c\->detach(); .Ve .PP If you are using Plack (which most frameworks do), then Plack::Middleware::Rewrite is worth looking at if you are migrating from Apache or have \s-1URL\s0's you want to always redirect. .SS "How do I put a password on my web pages?" .IX Subsection "How do I put a password on my web pages?" See if the web framework you are using has an authentication system and if that fits your needs. .PP Alternativly look at Plack::Middleware::Auth::Basic, or one of the other Plack authentication options. .SS "How do I make sure users can't enter values into a form that causes my \s-1CGI\s0 script to do bad things?" .IX Subsection "How do I make sure users can't enter values into a form that causes my CGI script to do bad things?" (contributed by brian d foy) .PP You can't prevent people from sending your script bad data. Even if you add some client-side checks, people may disable them or bypass them completely. For instance, someone might use a module such as \&\s-1LWP\s0 to submit to your web site. If you want to prevent data that try to use \s-1SQL\s0 injection or other sorts of attacks (and you should want to), you have to not trust any data that enter your program. .PP The perlsec documentation has general advice about data security. If you are using the \s-1DBI\s0 module, use placeholder to fill in data. If you are running external programs with \f(CW\*(C`system\*(C'\fR or \f(CW\*(C`exec\*(C'\fR, use the list forms. There are many other precautions that you should take, too many to list here, and most of them fall under the category of not using any data that you don't intend to use. Trust no one. .SS "How do I parse a mail header?" .IX Subsection "How do I parse a mail header?" Use the Email::MIME module. It's well-tested and supports all the craziness that you'll see in the real world (comment-folding whitespace, encodings, comments, etc.). .PP .Vb 1 \& use Email::MIME; \& \& my $message = Email::MIME\->new($rfc2822); \& my $subject = $message\->header(\*(AqSubject\*(Aq); \& my $from = $message\->header(\*(AqFrom\*(Aq); .Ve .PP If you've already got some other kind of email object, consider passing it to Email::Abstract and then using its cast method to get an Email::MIME object: .PP .Vb 3 \& my $mail_message_object = read_message(); \& my $abstract = Email::Abstract\->new($mail_message_object); \& my $email_mime_object = $abstract\->cast(\*(AqEmail::MIME\*(Aq); .Ve .SS "How do I check a valid mail address?" .IX Subsection "How do I check a valid mail address?" (partly contributed by Aaron Sherman) .PP This isn't as simple a question as it sounds. There are two parts: .PP a) How do I verify that an email address is correctly formatted? .PP b) How do I verify that an email address targets a valid recipient? .PP Without sending mail to the address and seeing whether there's a human on the other end to answer you, you cannot fully answer part \fIb\fR, but the Email::Valid module will do both part \fIa\fR and part \fIb\fR as far as you can in real-time. .PP Our best advice for verifying a person's mail address is to have them enter their address twice, just as you normally do to change a password. This usually weeds out typos. If both versions match, send mail to that address with a personal message. If you get the message back and they've followed your directions, you can be reasonably assured that it's real. .PP A related strategy that's less open to forgery is to give them a \s-1PIN \&\s0(personal \s-1ID\s0 number). Record the address and \s-1PIN \s0(best that it be a random one) for later processing. In the mail you send, include a link to your site with the \s-1PIN\s0 included. If the mail bounces, you know it's not valid. If they don't click on the link, either they forged the address or (assuming they got the message) following through wasn't important so you don't need to worry about it. .SS "How do I decode a \s-1MIME/BASE64\s0 string?" .IX Subsection "How do I decode a MIME/BASE64 string?" The MIME::Base64 package handles this as well as the \s-1MIME/QP\s0 encoding. Decoding base 64 becomes as simple as: .PP .Vb 2 \& use MIME::Base64; \& my $decoded = decode_base64($encoded); .Ve .PP The Email::MIME module can decode base 64\-encoded email message parts transparently so the developer doesn't need to worry about it. .SS "How do I find the user's mail address?" .IX Subsection "How do I find the user's mail address?" Ask them for it. There are so many email providers available that it's unlikely the local system has any idea how to determine a user's email address. .PP The exception is for organization-specific email (e.g. foo@yourcompany.com) where policy can be codified in your program. In that case, you could look at \&\f(CW$ENV\fR{\s-1USER\s0}, \f(CW$ENV\fR{\s-1LOGNAME\s0}, and getpwuid($<) in scalar context, like so: .PP .Vb 1 \& my $user_name = getpwuid($<) .Ve .PP But you still cannot make assumptions about whether this is correct, unless your policy says it is. You really are best off asking the user. .SS "How do I send email?" .IX Subsection "How do I send email?" Use the Email::MIME and Email::Sender::Simple modules, like so: .PP .Vb 10 \& # first, create your message \& my $message = Email::MIME\->create( \& header_str => [ \& From => \*(Aqyou@example.com\*(Aq, \& To => \*(Aqfriend@example.com\*(Aq, \& Subject => \*(AqHappy birthday!\*(Aq, \& ], \& attributes => { \& encoding => \*(Aqquoted\-printable\*(Aq, \& charset => \*(Aqutf\-8\*(Aq, \& }, \& body_str => "Happy birthday to you!\en", \& ); \& \& use Email::Sender::Simple qw(sendmail); \& sendmail($message); .Ve .PP By default, Email::Sender::Simple will try `sendmail` first, if it exists in your \f(CW$PATH\fR. This generally isn't the case. If there's a remote mail server you use to send mail, consider investigating one of the Transport classes. At time of writing, the available transports include: .IP "Email::Sender::Transport::Sendmail" 4 .IX Item "Email::Sender::Transport::Sendmail" This is the default. If you can use the \fImail\fR\|(1) or \fImailx\fR\|(1) program to send mail from the machine where your code runs, you should be able to use this. .IP "Email::Sender::Transport::SMTP" 4 .IX Item "Email::Sender::Transport::SMTP" This transport contacts a remote \s-1SMTP\s0 server over \s-1TCP.\s0 It optionally uses \s-1SSL\s0 and can authenticate to the server via \s-1SASL.\s0 .IP "Email::Sender::Transport::SMTP::TLS" 4 .IX Item "Email::Sender::Transport::SMTP::TLS" This is like the \s-1SMTP\s0 transport, but uses \s-1TLS\s0 security. You can authenticate with this module as well, using any mechanisms your server supports after \s-1STARTTLS.\s0 .PP Telling Email::Sender::Simple to use your transport is straightforward. .PP .Vb 6 \& sendmail( \& $message, \& { \& transport => $email_sender_transport_object, \& } \& ); .Ve .SS "How do I use \s-1MIME\s0 to make an attachment to a mail message?" .IX Subsection "How do I use MIME to make an attachment to a mail message?" Email::MIME directly supports multipart messages. Email::MIME objects themselves are parts and can be attached to other Email::MIME objects. Consult the Email::MIME documentation for more information, including all of the supported methods and examples of their use. .SS "How do I read email?" .IX Subsection "How do I read email?" Use the Email::Folder module, like so: .PP .Vb 1 \& use Email::Folder; \& \& my $folder = Email::Folder\->new(\*(Aq/path/to/email/folder\*(Aq); \& while(my $message = $folder\->next_message) { \& # next_message returns Email::Simple objects, but we want \& # Email::MIME objects as they\*(Aqre more robust \& my $mime = Email::MIME\->new($message\->as_string); \& } .Ve .PP There are different classes in the Email::Folder namespace for supporting various mailbox types. Note that these modules are generally rather limited and only support \fBreading\fR rather than writing. .SS "How do I find out my hostname, domainname, or \s-1IP\s0 address?" .IX Xref "hostname, domainname, IP address, host, domain, hostfqdn, inet_ntoa, gethostbyname, Socket, Net::Domain, Sys::Hostname" .IX Subsection "How do I find out my hostname, domainname, or IP address?" (contributed by brian d foy) .PP The Net::Domain module, which is part of the Standard Library starting in Perl 5.7.3, can get you the fully qualified domain name (\s-1FQDN\s0), the host name, or the domain name. .PP .Vb 1 \& use Net::Domain qw(hostname hostfqdn hostdomain); \& \& my $host = hostfqdn(); .Ve .PP The Sys::Hostname module, part of the Standard Library, can also get the hostname: .PP .Vb 1 \& use Sys::Hostname; \& \& $host = hostname(); .Ve .PP The Sys::Hostname::Long module takes a different approach and tries harder to return the fully qualified hostname: .PP .Vb 1 \& use Sys::Hostname::Long \*(Aqhostname_long\*(Aq; \& \& my $hostname = hostname_long(); .Ve .PP To get the \s-1IP\s0 address, you can use the \f(CW\*(C`gethostbyname\*(C'\fR built-in function to turn the name into a number. To turn that number into the dotted octet form (a.b.c.d) that most people expect, use the \f(CW\*(C`inet_ntoa\*(C'\fR function from the Socket module, which also comes with perl. .PP .Vb 1 \& use Socket; \& \& my $address = inet_ntoa( \& scalar gethostbyname( $host || \*(Aqlocalhost\*(Aq ) \& ); .Ve .SS "How do I fetch/put an (S)FTP file?" .IX Subsection "How do I fetch/put an (S)FTP file?" Net::FTP, and Net::SFTP allow you to interact with \s-1FTP\s0 and \s-1SFTP \s0(Secure \&\s-1FTP\s0) servers. .SS "How can I do \s-1RPC\s0 in Perl?" .IX Subsection "How can I do RPC in Perl?" Use one of the \s-1RPC\s0 modules( ). .SH "AUTHOR AND COPYRIGHT" .IX Header "AUTHOR AND COPYRIGHT" Copyright (c) 1997\-2010 Tom Christiansen, Nathan Torkington, and other authors as noted. All rights reserved. .PP This documentation is free; you can redistribute it and/or modify it under the same terms as Perl itself. .PP Irrespective of its distribution, all code examples in this file are hereby placed into the public domain. You are permitted and encouraged to use this code in your own programs for fun or for profit as you see fit. A simple comment in the code giving credit would be courteous but is not required.