summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFiles
2021-05-29Merge branch 'main' of github.com:superseriousbusiness/gotosocial into mainLibravatar tsmethurst6
2021-05-29Search (#36)Libravatar Tobi Smethurst22
First implementation of search functionality for remote account and status lookups.
2021-05-29first implementation of search featureLibravatar tsmethurst20
2021-05-28federate account updatesLibravatar tsmethurst7
2021-05-28Announce/boost (#35)Libravatar Tobi Smethurst21
Remote boosts incoming/outgoing now working.
2021-05-27Notifications (#34)Libravatar Tobi Smethurst42
Notifications working for: * Mentions * Faves * New follow requests * New followers
2021-05-24Faves (#31)Libravatar Tobi Smethurst12
* start on federating faves * outbound federation of likes working
2021-05-23first draft of DockerfileLibravatar tsmethurst1
2021-05-23status deletes, profile updates (#30)Libravatar Tobi Smethurst20
1. Proper DELETE of federated statuses (not yet deleting all the media and stuff -- i still have to implement this -- but the actual status is toast). 2. Proper UPDATE of profiles. When you change your profile picture on your remote instance, that will now register properly in GoToSocial. 3. Scrolling down the home timeline - it no longer just sort of ends, and will keep loading older statuses as you scroll. 4. Little bugfixes -- still had some nil pointer errors when dereferencing remote accounts.
2021-05-22small fiddling to allow whalebird to work (a bit)Libravatar tsmethurst4
2021-05-22Admin cli (#29)Libravatar Tobi Smethurst4
Now you can use the CLI tool to: * Create a new account with the given username, email address and password (which will be hashed of course). * Confirm the account's so that it can log in and post. * Promote the account to admin. * Demote the account from admin. * Disable the account. * Suspend the account.
2021-05-21Home timeline (#28)Libravatar Tobi Smethurst14
* v. basic implementation of home timeline * Go fmt ./...
2021-05-21Follows and relationships (#27)Libravatar Tobi Smethurst54
* Follows -- create and undo, both remote and local * Statuses -- federate new posts, including media, attachments, CWs and image descriptions.
2021-05-17update progressLibravatar tsmethurst1
2021-05-17Refine statuses (#26)Libravatar Tobi Smethurst45
Remote media is now dereferenced and attached properly to incoming federated statuses. Mentions are now dereferenced and attached properly to incoming federated statuses. Small fixes to status visibility. Allow URL params for filtering statuses: // ExcludeRepliesKey is for specifying whether to exclude replies in a list of returned statuses by an account. // PinnedKey is for specifying whether to include pinned statuses in a list of returned statuses by an account. // MaxIDKey is for specifying the maximum ID of the status to retrieve. // MediaOnlyKey is for specifying that only statuses with media should be returned in a list of returned statuses by an account. Add endpoint for fetching an account's statuses.
2021-05-15update progressLibravatar tsmethurst1
2021-05-15draft CoCLibravatar tsmethurst1
2021-05-15add matrix linkLibravatar tsmethurst1
2021-05-15contributing.mdLibravatar tsmethurst1
2021-05-15Inbox post (#22)Libravatar Tobi Smethurst58
Inbox POST from federated servers now working for statuses and follow requests. Follow request client API added. Start work on federating outgoing messages. Other fixes and changes/tidying up.
2021-05-10Mediahandler (#21)Libravatar Tobi Smethurst15
Media GET and media PUT handlers
2021-05-09Webfinger + Small fixes (#20)Libravatar Tobi Smethurst16
2021-05-09Fix token sweep (#19)Libravatar Tobi Smethurst1
* fix token sweep not working * change sweep message to trace
2021-05-09add api/v1/instance info handler + instance model (#18)Libravatar Tobi Smethurst11
2021-05-09Letsencrypt (#17)Libravatar Tobi Smethurst6
2021-05-08status boosts (#16)Libravatar Tobi Smethurst7
2021-05-08Ap (#14)Libravatar Tobi Smethurst183
Big restructuring and initial work on activitypub
2021-05-08Revert "make boosts work woo (#12)" (#15)Libravatar Tobi Smethurst21
This reverts commit 9616f46424363adbc124da52c6728ca047506403.
2021-04-21make boosts work woo (#12)Libravatar Tobi Smethurst21
2021-04-20linting + organizingLibravatar tsmethurst60
2021-04-19Api/v1/statuses (#11)Libravatar Tobi Smethurst150
This PR adds: Statuses New status creation. View existing status Delete a status Fave a status Unfave a status See who's faved a status Media Upload media attachment and store/retrieve it Upload custom emoji and store/retrieve it Fileserver Serve files from storage Testing Test models, testrig -- run a GTS test instance and play around with it.
2021-04-01Api/v1/accounts (#8)Libravatar Tobi Smethurst94
* start work on accounts module * plodding away on the accounts endpoint * groundwork for other account routes * add password validator * validation utils * require account approval flags * comments * comments * go fmt * comments * add distributor stub * rename api to federator * tidy a bit * validate new account requests * rename r router * comments * add domain blocks * add some more shortcuts * add some more shortcuts * check email + username availability * email block checking for signups * chunking away at it * tick off a few more things * some fiddling with tests * add mock package * relocate repo * move mocks around * set app id on new signups * initialize oauth server properly * rename oauth server * proper mocking tests * go fmt ./... * add required fields * change name of func * move validation to account.go * more tests! * add some file utility tools * add mediaconfig * new shortcut * add some more fields * add followrequest model * add notify * update mastotypes * mock out storage interface * start building media interface * start on update credentials * mess about with media a bit more * test image manipulation * media more or less working * account update nearly working * rearranging my package ;) ;) ;) * phew big stuff!!!! * fix type checking * *fiddles* * Add CreateTables func * account registration flow working * tidy * script to step through auth flow * add a lil helper for generating user uris * fiddling with federation a bit * update progress * Tidying and linting
2021-03-22Oauth/token (#7)Libravatar Tobi Smethurst30
* add host and protocol options * some fiddling * tidying up and comments * tick off /oauth/token * tidying a bit * tidying * go mod tidy * allow attaching middleware to server * add middleware * more user friendly * add comments * comments * store account + app * tidying * lots of restructuring * lint + tidy
2021-03-20fix lint errorsLibravatar tsmethurst3
2021-03-20add golangci jobLibravatar tsmethurst1
2021-03-20Create codeql-analysis.ymlLibravatar Tobi Smethurst1
2021-03-20replace sloth with cuter slothLibravatar tsmethurst1
2021-03-20Merge pull request #6 from gotosocial/fun_with_oauth2Libravatar Tobi Smethurst24
oauth2
2021-03-20Go mod tidyLibravatar tsmethurst2
2021-03-20go fmtLibravatar tsmethurst3
2021-03-20tidying upLibravatar tsmethurst3
2021-03-20add apps handlerLibravatar tsmethurst1
2021-03-20add fieldsLibravatar tsmethurst1
2021-03-20formatting,commentsLibravatar tsmethurst5
2021-03-20add progress listLibravatar tsmethurst2
2021-03-20allow showing just codeLibravatar tsmethurst2
2021-03-19updateLibravatar tsmethurst1
2021-03-18extend application for use in oauthLibravatar tsmethurst2
2021-03-18auth flow working for codeLibravatar tsmethurst14
2021-03-18Create FUNDING.ymlLibravatar Tobi Smethurst1