Responding to my own post because i've found a solution for this problem. It is actually straightforward:
Set a extra cookie by adding in your function:
$c->response->cookies->{'cookie_consent'} = {
'name' => 'cookie_consent',
'value' => '1',
'expires' => '+3M',
'max-age' => '+3M',
'domain' => 'yoursite',
'path' => '/',
'secure' => 0,
'samesite' => 'Lax',
};
This will automatically add a cookie when the response is send.
You can test for the presence of a cookie by testing if the request has a cookie with the given name:
my $consent_cookie = $c->request->cookies->{'cookie_consent'};
If the value is set, the cookie exists. You can use the value to record the type of consent the user is given. It is now up to you to react appropriately on the presence or absence of the cookie.
Hopes this help other. I've been looking for the answer quite some time and had given up. Found the answer after searching for a different problem.
Kind regards
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.
|
|