From b94bb96c550875022273dba6626ccffa624874eb Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Sat, 19 Jan 2019 11:36:58 -0100 Subject: 0.1.3 Signed-off-by: Maxence Lange --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'appinfo') diff --git a/appinfo/info.xml b/appinfo/info.xml index 00d26eda..1cfe7ec0 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -18,7 +18,7 @@ **🕸 Open standards:** We use the established ActivityPub standard! ]]> - 0.1.2 + 0.1.3 agpl Maxence Lange Julius Härtl -- cgit v1.2.3 From 1029def5c52c0a36885b66ecd8725a5033976c27 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Mon, 21 Jan 2019 15:17:01 -0100 Subject: 0.2.0-dev01 Signed-off-by: Maxence Lange --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'appinfo') diff --git a/appinfo/info.xml b/appinfo/info.xml index 1cfe7ec0..f1a3c69b 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -18,7 +18,7 @@ **🕸 Open standards:** We use the established ActivityPub standard! ]]> - 0.1.3 + 0.2.0-dev01 agpl Maxence Lange Julius Härtl -- cgit v1.2.3 From fd2ef9e6cec67b6a50b91293d97831d3631d9f26 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Thu, 24 Jan 2019 10:24:17 -0100 Subject: cleaning and renaming upsteam request caching Signed-off-by: Maxence Lange --- appinfo/routes.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index dc309c09..7c056217 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -38,10 +38,10 @@ return [ 'routes' => [ ['name' => 'Navigation#navigate', 'url' => '/', 'verb' => 'GET'], ['name' => 'Navigation#test', 'url' => '/test', 'verb' => 'GET'], - [ 'name' => 'Navigation#timeline', 'url' => '/timeline/{path}', 'verb' => 'GET', - 'requirements' => ['path' => '.+'], 'defaults' => ['path' => ''] + 'requirements' => ['path' => '.+'], + 'defaults' => ['path' => ''] ], ['name' => 'Navigation#documentGet', 'url' => '/document/get', 'verb' => 'GET'], ['name' => 'Navigation#documentGetPublic', 'url' => '/document/public', 'verb' => 'GET'], @@ -84,12 +84,8 @@ return [ ['name' => 'Local#documentsCache', 'url' => '/api/v1/documents/cache', 'verb' => 'POST'], - ['name' => 'Queue#asyncWithToken', 'url' => CurlService::ASYNC_TOKEN, 'verb' => 'POST'], - - [ - 'name' => 'Config#setCloudAddress', 'url' => '/api/v1/config/cloudAddress', - 'verb' => 'POST' - ], + ['name' => 'Queue#asyncForRequest', 'url' => CurlService::ASYNC_REQUEST_TOKEN, 'verb' => 'POST'], + ['name' => 'Config#setCloudAddress', 'url' => '/api/v1/config/cloudAddress', 'verb' => 'POST'] ] ]; -- cgit v1.2.3 From c7d1da1f53a4fbde722a28ed0b98acf511409f22 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Fri, 4 Jan 2019 18:42:58 -0100 Subject: get stream for hashtag Signed-off-by: Maxence Lange --- appinfo/routes.php | 1 + 1 file changed, 1 insertion(+) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index dc309c09..c12fbd30 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -59,6 +59,7 @@ return [ ['name' => 'Local#streamHome', 'url' => '/api/v1/stream/home', 'verb' => 'GET'], ['name' => 'Local#streamNotifications', 'url' => '/api/v1/stream/notifications', 'verb' => 'GET'], ['name' => 'Local#streamTimeline', 'url' => '/api/v1/stream/timeline', 'verb' => 'GET'], + ['name' => 'Local#streamTag', 'url' => '/api/v1/stream/tag/{hashtag}/', 'verb' => 'GET'], ['name' => 'Local#streamFederated', 'url' => '/api/v1/stream/federated', 'verb' => 'GET'], ['name' => 'Local#streamDirect', 'url' => '/api/v1/stream/direct', 'verb' => 'GET'], ['name' => 'Local#streamAccount', 'url' => '/api/v1/account/{username}/stream', 'verb' => 'GET'], -- cgit v1.2.3 From 833d19617b8fc15baf651b280b3b3be71d935ba2 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Sun, 6 Jan 2019 12:13:05 -0100 Subject: new Search endpoint Signed-off-by: Maxence Lange --- appinfo/routes.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index c12fbd30..8b28ae27 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -83,6 +83,8 @@ return [ ['name' => 'Local#globalActorAvatar', 'url' => '/api/v1/global/actor/avatar', 'verb' => 'GET'], ['name' => 'Local#globalAccountsSearch', 'url' => '/api/v1/global/accounts/search', 'verb' => 'GET'], + ['name' => 'Local#search', 'url' => '/api/v1/search', 'verb' => 'GET'], + ['name' => 'Local#documentsCache', 'url' => '/api/v1/documents/cache', 'verb' => 'POST'], ['name' => 'Queue#asyncWithToken', 'url' => CurlService::ASYNC_TOKEN, 'verb' => 'POST'], -- cgit v1.2.3 From e3db06429991c4797e1fc5ea9f5897da24394eaf Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Mon, 7 Jan 2019 18:25:16 -0100 Subject: generate route Signed-off-by: Maxence Lange --- appinfo/routes.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index 8b28ae27..554144c5 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -54,6 +54,8 @@ return [ ['name' => 'ActivityPub#followers', 'url' => '/@{username}/followers', 'verb' => 'GET'], ['name' => 'ActivityPub#following', 'url' => '/@{username}/following', 'verb' => 'GET'], + ['name' => 'OStatus#subscribe', 'url' => '/ostatus/follow/{uri}', 'verb' => 'GET'], + ['name' => 'SocialPub#displayPost', 'url' => '/@{username}/{postId}', 'verb' => 'GET'], ['name' => 'Local#streamHome', 'url' => '/api/v1/stream/home', 'verb' => 'GET'], -- cgit v1.2.3 From 910583e12233d3282f5aeeb678c6aa420f25be0f Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Tue, 8 Jan 2019 09:25:57 -0100 Subject: get link for remote to follow local account Signed-off-by: Maxence Lange --- appinfo/routes.php | 1 + 1 file changed, 1 insertion(+) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index 554144c5..fad134fd 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -55,6 +55,7 @@ return [ ['name' => 'ActivityPub#following', 'url' => '/@{username}/following', 'verb' => 'GET'], ['name' => 'OStatus#subscribe', 'url' => '/ostatus/follow/{uri}', 'verb' => 'GET'], + ['name' => 'OStatus#getLink', 'url' => '/api/v1/ostatus/link/{local}/{account}', 'verb' => 'GET'], ['name' => 'SocialPub#displayPost', 'url' => '/@{username}/{postId}', 'verb' => 'GET'], -- cgit v1.2.3 From bc542a613fa1cdcff9a5d7410a2d46cffc0c5122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 6 Feb 2019 11:48:46 +0100 Subject: Implement following a remote from the public pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- appinfo/routes.php | 1 + 1 file changed, 1 insertion(+) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index fad134fd..2b64e712 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -55,6 +55,7 @@ return [ ['name' => 'ActivityPub#following', 'url' => '/@{username}/following', 'verb' => 'GET'], ['name' => 'OStatus#subscribe', 'url' => '/ostatus/follow/{uri}', 'verb' => 'GET'], + ['name' => 'OStatus#followRemote', 'url' => '/api/v1/ostatus/followRemote/{local}', 'verb' => 'GET'], ['name' => 'OStatus#getLink', 'url' => '/api/v1/ostatus/link/{local}/{account}', 'verb' => 'GET'], ['name' => 'SocialPub#displayPost', 'url' => '/@{username}/{postId}', 'verb' => 'GET'], -- cgit v1.2.3 From 9ac8eb965b930110d0ec42d56988a10adf1e3f96 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Fri, 22 Feb 2019 23:04:00 -0100 Subject: boost creation Signed-off-by: Maxence Lange --- appinfo/info.xml | 1 + 1 file changed, 1 insertion(+) (limited to 'appinfo') diff --git a/appinfo/info.xml b/appinfo/info.xml index f1a3c69b..83c87f31 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -47,6 +47,7 @@ OCA\Social\Command\CacheRefresh OCA\Social\Command\NoteCreate + OCA\Social\Command\NoteBoost OCA\Social\Command\Reset OCA\Social\Command\QueueStatus OCA\Social\Command\QueueProcess -- cgit v1.2.3 From 3c1def1d1c5a64ebeeabcd46893aae6fc602c1ab Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Fri, 22 Feb 2019 23:17:33 -0100 Subject: fixing route/controller Signed-off-by: Maxence Lange --- appinfo/routes.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index 33562323..60fbd98b 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -71,6 +71,8 @@ return [ ['name' => 'Local#postCreate', 'url' => '/api/v1/post', 'verb' => 'POST'], ['name' => 'Local#postDelete', 'url' => '/api/v1/post', 'verb' => 'DELETE'], + ['name' => 'Local#postBoost', 'url' => '/api/v1/post/boost', 'verb' => 'POST'], + ['name' => 'Local#actionFollow', 'url' => '/api/v1/current/follow', 'verb' => 'PUT'], ['name' => 'Local#actionUnfollow', 'url' => '/api/v1/current/follow', 'verb' => 'DELETE'], -- cgit v1.2.3