Option to require each submission to have a unique submissionid in order to be processed (server-side)

Created on 9 March 2018, about 7 years ago
Updated 18 August 2024, 8 months ago

Feature request: For Honeypot to offer an option for a more stringent server-side validation.

In particular, have a hidden form field be provisioned by the module (via hook_element_info()) with a unique value (e.g. honeypot_sid). honeypot_sid's will be generated and store in a new table with the following fields:

$honeypot_sid = db_insert(table-name)
    ->fields(array(
      'uid' => $user->uid,
      'sid' => session_id(),
      'ip_address' => ip_address(),
      'timestamp' => REQUEST_TIME,
      'form_id' => $form_id,
      'status' => $status,
    ))
    ->execute();

The validate callback would check the form_state values and make sure a valid honeypot_sid was a part of the form values.

Additionally, the feature would disabled page_caching for pages with such a form to avoid re-issuing a honeypot_sid.

Lastly, a theme function for the field would allow it to be customized as needed.

We have a working prototype as a helper module, but we feel it may be a good fit for the module itself.

✨ Feature request
Status

Closed: duplicate

Version

2.1

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States Tonytosta-1

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024