I hear ya. I've always found plugins for this kind of stuff tend to be overkill. Why? Because it's more about the pattern than anything.
e.g., I tend to follow this patter in dancer2 apps for authentication:
- unauthenticated request handler to process login form (or HMAC auth form API)
- check auth credentials somehow
- on success, store session info on $USER
- on fail, throw a 403 or something
- all other endpoint handlers are authenticated by an assertion that the session $USER is valid; failure redirects or throws 403 as appropriate
So there are keywords that do this already:
post,
session, and
send_error.
So what would actually be useful, and I've thought about this, is a repository of single page "apps" that do things like implement authentication (like the old PHPlib used to provide) or implement an example of doing HMAC authentication for API handling, etc. I good one also would be how to handle an eBay IPN (payment notification) which turns out to be trivial in dancer2/mojo - everyone likes getting paid, here's how! xD
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.