alpha
Login
or
Join now
tangled.org
/
core
Star
5
Fork
66
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Monorepo for Tangled
tangled.org
Star
5
Fork
66
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
12
Pulls
26
Pipelines
core
/
appview
/
at
f94aa9e1d24c78158a48cd46812632ab6442cf38
41 folders
4 files
Seongmin Lee
appview/db: more flexible tables
5mo ago
f94aa9e1
bsky
appview/db: more flexible tables migrate tables: `stars`, `reactions`, `follows`, `public_keys` Two major changes: 1. Remove autoincrement id for these tables. AUTOINCREMENT primary key does not help much for these tables and only introduces slice performance overhead. Use default `rowid` with non-autoincrement integer instead. 2. Remove unique constraints other than `(did, rkey)` We cannot block users creating non-unique atproto records. Appview needs to handle those properly. For example, if user unstar a repo, appview should delete all existing star records pointing to that repo. To allow this, remove all constraints other than `(did, rkey)`. Minor changes done while migrating tables: - rename `thread_at` in `reactions` to `subject_at` to match with other tables - follow common column names like `did` and `created` - allow self-follow (similar reason to 2nd major change. we should block it from service layer instead) Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
cache
appview,knotserver: pref-handle display + identity ingest Lewis: May this revision serve well! <lewis@tangled.org>
2 months ago
cloudflare
appview/cloudflare: add kv, r2 and dns client wrappers Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>
4 months ago
commitverify
commitverify: skip unsigned commits before DB lookup Signed-off-by: Matías Insaurralde <matias@insaurral.de>
2 months ago
config
appview/db: native knot membership queries Lewis: May this revision serve well! <lewis@tangled.org>
3 weeks ago
db
appview/db: more flexible tables migrate tables: `stars`, `reactions`, `follows`, `public_keys` Two major changes: 1. Remove autoincrement id for these tables. AUTOINCREMENT primary key does not help much for these tables and only introduces slice performance overhead. Use default `rowid` with non-autoincrement integer instead. 2. Remove unique constraints other than `(did, rkey)` We cannot block users creating non-unique atproto records. Appview needs to handle those properly. For example, if user unstar a repo, appview should delete all existing star records pointing to that repo. To allow this, remove all constraints other than `(did, rkey)`. Minor changes done while migrating tables: - rename `thread_at` in `reactions` to `subject_at` to match with other tables - follow common column names like `did` and `created` - allow self-follow (similar reason to 2nd major change. we should block it from service layer instead) Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
email
appview/email: create contact and then add to segment This is API call is idempotent. If the contact doesn't previously exist on Resend, adding to Segment will fail. Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>
2 months ago
filetree
appview/pages: differentiate open/close icons in filetree the giant tailwind safelist is used because nested groups cannot be styled using tailwind, and therefore we need named groups. we pre-populate the source html with up to 12-deep named groups and their variants so that tailwind generates the right css. Signed-off-by: oppiliappan <me@oppi.li>
3 months ago
focus
appview/focus: add web handlers for focus mode - /focus/begin: begin focus mode - /focus/end: end focus mode - /focus/next: mark read & move to next focus item Signed-off-by: oppiliappan <me@oppi.li>
2 weeks ago
indexer
appview/notify: notify on issue/PR assign currently hardcoded to fire on the tangled assignee label def. Signed-off-by: oppiliappan <me@oppi.li>
4 weeks ago
issues
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
knotacl
appview/knotacl: replace cache poll w/ event-driven roster Lewis: May this revision serve well! <lewis@tangled.org>
1 week ago
knotcompat
appview: stop pds-record acl fallback if knot cap probe fails Lewis: May this revision serve well! <lewis@tangled.org>
2 weeks ago
knots
appview: stop pds-record acl fallback if knot cap probe fails Lewis: May this revision serve well! <lewis@tangled.org>
2 weeks ago
labels
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
mentions
appview: rename refresolver module to mentions usage of the resolver is now mentionsResolver. Signed-off-by: oppiliappan <me@oppi.li>
6 months ago
metrics
appview/metrics: support request hijacking permits websocket upgrades in pipeline endpoints Signed-off-by: oppiliappan <me@oppi.li>
1 month ago
middleware
appview: envelope LoggedInUser into BaseParams down the line, BaseParams will include a bit more data, such as focus status. Signed-off-by: oppiliappan <me@oppi.li>
2 weeks ago
migration
appview: be more compatible with legacy comment records Signed-off-by: Seongmin Lee <git@boltless.me>
1 month ago
models
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
notifications
appview/pages: UI bits for focus mode Signed-off-by: oppiliappan <me@oppi.li>
2 weeks ago
notify
appview/notify: notify on issue/PR assign currently hardcoded to fire on the tangled assignee label def. Signed-off-by: oppiliappan <me@oppi.li>
4 weeks ago
oauth
xrpc/serviceauth: didweb svc auth colon parameterization Lewis: May this revision serve well! <lewis@tangled.org>
2 weeks ago
pages
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
pagination
appview: add basic issue indexer - Heavily inspired by gitea - add `GetAllIssues` which only receives a paginator and gathers all issues ignoring `repoAt` field Signed-off-by: Seongmin Lee <boltlessengineer@proton.me>
11 months ago
pipelines
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
pulls
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
randomart
show branches in a dropdown
1 year ago
repo
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
reporesolver
appview: read permissions thru knotacl service Lewis: May this revision serve well! <lewis@tangled.org>
3 weeks ago
repoverify
appview,knotmirror: tolerate 1.13 knots during 1.14 rollout Lewis: May this revision serve well! <lewis@tangled.org>
1 month ago
searchquery
appview/searchquery: add dynamic tag extraction and shared resolution helpers Add KnownTags map and GetDynamicTags/GetNegatedDynamicTags methods to extract label-value search filters from parsed queries. Any tag:value pair whose key is not a known system tag (state, author, label) is treated as a dynamic label filter. Add resolve.go with shared helpers: IdentResolver type, ResolveAuthor, ExtractTextFilters, and ResolveDIDLabelValues. These keep resolution logic in the searchquery package without coupling it to idresolver. Signed-off-by: Thomas Karpiniec <tom.karpiniec@outlook.com>
3 months ago
serververify
appview: kt+sp members ingestion Lewis: May this revision serve well! <lewis@tangled.org>
1 month ago
settings
appview/pages: UI bits for focus mode Signed-off-by: oppiliappan <me@oppi.li>
2 weeks ago
signup
appview: clear signup error message on successful signup Signed-off-by: nove-b <nove.b.web@gmail.com>
1 month ago
sites
appview/sites: lenient unmarshal for legacy bool-valued kv entries Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>
1 month ago
spindles
appview/pages: UI bits for focus mode Signed-off-by: oppiliappan <me@oppi.li>
2 weeks ago
state
appview: move tx rollback logic out of `db.UpsertProfile()` Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
strings
appview/pages: UI bits for focus mode Signed-off-by: oppiliappan <me@oppi.li>
2 weeks ago
timeline
appview/pages: UI bits for focus mode Signed-off-by: oppiliappan <me@oppi.li>
2 weeks ago
xrpcclient
appview/knotacl: knot acl client & cache Lewis: May this revision serve well! <lewis@tangled.org>
3 weeks ago
ingester.go
appview: move tx rollback logic out of `db.UpsertProfile()` Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago
ingester_repo.go
appview/ingester: slightly nicer logging Signed-off-by: oppiliappan <me@oppi.li>
4 weeks ago
ingester_repo_test.go
appview/ingester: slightly nicer logging Signed-off-by: oppiliappan <me@oppi.li>
4 weeks ago
ingester_string_test.go
appview: remove validator - RBAC should be enforced on service logic. - We should not check for referenced records existence from db due to the nature of atproto. - Comment depth validation is not necessary. We can accept them and just don't render replies with deeper depth. Move markdown sanitizer to dedicated package to avoid import cycle Signed-off-by: Seongmin Lee <git@boltless.me>
5 months ago