Add interaction logging and tighten model NOT NULL constraints
Log searches (article/category) and message-generation events to a new interaction_log table, capturing IP address and User-Agent. Also apply NOT NULL constraints to Contribution, SentMessage, FlickrUpload, and ThumbnailCache fields that are always populated, and remove stale continue_token references from category.html. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
252a854e76
commit
08f5128e8d
5 changed files with 160 additions and 76 deletions
12
README.md
12
README.md
|
|
@ -79,6 +79,18 @@ cp download_sent_mail.example.json download_sent_mail.local.json
|
|||
Then edit `download_sent_mail.local.json` and set `cookies_str` to your full
|
||||
Flickr `Cookie` header value.
|
||||
|
||||
## Interaction Logging
|
||||
|
||||
The app logs searches and message generation to the `interaction_log` table:
|
||||
|
||||
- `search_article`: when a user searches for a Wikipedia article title (page 1 only)
|
||||
- `search_category`: when a user searches a Wikipedia category
|
||||
- `generate_message`: when a non-free CC message is generated for a photo
|
||||
|
||||
Each row records the timestamp, interaction type, client IP (from
|
||||
`X-Forwarded-For` if present), User-Agent, query, and (for message events)
|
||||
the Flickr and Wikipedia URLs.
|
||||
|
||||
## Notes
|
||||
|
||||
- `download_commons_contributions.py` uses an overlap window of known-only
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue