[research] Search operators: from:, has:, in:, before:/after: — audit what exists first #106
Open
opened 2026-09-17 01:39:34 -04:00 by jared
·
1 comment
No Branch/Tag Specified
lotus
update-packages
sw-fix
read-me-update
image-path-changes
dm-calls
fix-2469
renovate/element-hq-element-call-embedded-0.x
renovate/npm-i18next-http-backend-vulnerability
renovate/npm-vite-vulnerability
dev
docs-update
more-theme
fix-257
imporve-thread-reply
revert-2402-improve-menu-congestion
mxidColor-toggle
update-sw-main-msg
v4.11.1
v4.10.5
v4.10.4
v4.10.3
v4.10.2
v4.10.1
v4.10.0
v4.9.1
v4.9.0
v4.8.1
v4.8.0
v4.7.1
v4.7.0
v4.6.0
v4.5.1
v4.5.0
v4.4.0
v4.3.2
v4.3.0
v4.2.3
v4.2.2
v4.2.1
v4.2.0
v4.1.0
v4.0.3
v4.0.0
v3.2.0
v3.1.0
v3.0.0
v2.2.6
v2.2.5
v2.2.4
v2.2.3
v2.2.2
v2.2.1
v2.2.0
v2.1.3
v2.1.2
v2.1.1
v2.1.0
v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0.0
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.1
v1.5.0
v1.4.0
v1.3.2
v1.3.1
v1.3.0
v1.2.1
v1.2.0
v1.1.0
v1.0.0
Labels
Clear labels
a11y
area: appearance
area: auth-session
area: build-ci
area: calls
area: desktop
area: media
area: messaging
area: mobile
area: moderation
area: navigation
area: notifications
area: settings
area: threads
bug
dependencies
docs
duplicate
enhancement
help wanted
invalid
needs-human-review
performance
planning
priority: critical
priority: high
priority: low
priority: medium
qa
question
research
security
tech-debt
ux
wontfix
Accessibility: keyboard, screen reader, contrast, motion
Client area: appearance
Client area: auth-session
Client area: build-ci
Client area: calls
Client area: desktop
Client area: media
Client area: messaging
Client area: mobile
Client area: moderation
Client area: navigation
Client area: notifications
Client area: settings
Client area: threads
Something is not working
Third-party package versions and advisories
README / LOTUS_* docs wrong or missing
This issue or pull request already exists
New feature
Need some help
Something is wrong
Re-render storms, leaks, heavy work on hot paths
Data loss, security hole, or crash on a main path
Broken feature or serious usability problem
Minor issue or polish
Wrong behaviour in an edge case or notable degradation
Manual QA: shipped, needs a human in a real environment
More information is needed
XSS, unsafe URLs, data leaks, auth/session
Code health, dead code, fragile patterns
Usability or visual inconsistency
This won't be fixed
Milestone
No items
No Milestone
Features 2026-Q4
Projects
Clear projects
No projects
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: LotusGuild/cinny#106
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The local encrypted search has a date range; we believe it lacks
from:@user,has:image|file|link|video,in:#room,before:/after:operators, but this needs verifying before building.Research first:
src/app/features/message-search, the encrypted search cache (src/app/utils/searchCache.ts) and the server-side/searchpath — which filters each already supports (sender, room, date, content type) and how they are exposed in the UI.Deliverable: findings + a plan in this issue; implementation as a follow-up.
Inventory (2026-09-20)
What exists today
/searchfrom:@user— parsed inSearchInput.tsx:28-31(FROM_REGEX), with member autocomplete; sender-only mode when there's no body text (MessageSearch.tsx:269-272)SearchFilters.tsx:480-523filter.senders(useMessageSearch.ts:172)SearchCacheRow.sender(searchCache.ts:37) — yesglobalURL param,MessageSearch.tsx:60/230)filter.roomsDateRangeButton(SearchFilters.tsx:536-649)filterGroupsByDateRange,useMessageSearch.ts:85; comment at :169-171)row.ts— yes, cheapcontainsUrltoggle (SearchFilters.tsx:675, URL paramcontainsUrl)filter.contains_url(spec field, :175)bodyURL sniffing/searchhas no msgtype filter; server FTS indexesbody(filenames), sohas:imagecan't be expressedSearchCacheRow= roomId, eventId, ts, sender, body, formattedBody, pollText)order_byUpstream Cinny 4.12 inheritance: the room/global picker, sender chips, order toggle.
from:typing, the date range andcontainsUrlare Lotus additions. So the belief in the issue is half right:from:exists (typed + chips);in:,before:/after:,has:do not exist as operators, andhas:image|file|videohas no backing on either side.Proposal (one query object, two entry points)
parseSearchQuery(text) → { term, senders[], rooms[], fromTs?, toTs?, has: Set<'link'|'image'|'video'|'file'> }(pure, unit-tested) fed by both the typed box (Discord-style chips rendered for recognised operators, autocomplete forfrom:members andin:room names,before:/after:acceptingYYYY-MM-DDand7d/2w) and the existing filter buttons, which just write into the same object; the URL params stay the serialisation.Where each is answered:
from:,in:,before:/after:— server (senders,rooms, client-side date trim as now) and local index (already has sender/room/ts). Cheap: ~150 lines, mostly the parser + chip rendering.has:link— servercontains_url; local: URL regex overbodyat query time (fine at index sizes we have).has:image|video|file— needs amsgtypecolumn inSearchCacheRow(bump the index schema version; rows re-fill on the next room open) for the local path; server side is impossible with/searchas specified, so in unencrypted rooms it would silently degrade to a local-only answer with a "cached messages only" note (the UI already has that vocabulary,MessageSearch.tsx:617/715). Recommend shippinghas:linkfirst andhas:image|video|fileas local-only with that caveat.Order of work if approved: parser + chips (1),
in:+before:/after:wiring (2),has:link(3), msgtype column +has:image|video|filelocal-only (4). Decision needed on whether a local-only operator with a caveat is acceptable or whetherhas:should wait for server-side support (it won't come — the spec has no such filter).