]> git.mxchange.org Git - friendica.git/blobdiff - static/routes.config.php
Merge pull request #12280 from MrPetovan/bug/11804-delete-notifications-item
[friendica.git] / static / routes.config.php
index d5bed27569d1b285ff1714f2c8fc76ce97b4b544..ae575571177ddedf24972d8be38259d94f70a920 100644 (file)
@@ -36,6 +36,7 @@ $profileRoutes = [
        '/contacts/common'                         => [Module\Profile\Common::class,            [R::GET]],
        '/contacts[/{type}]'                       => [Module\Profile\Contacts::class,          [R::GET]],
        '/media'                                   => [Module\Profile\Media::class,             [R::GET]],
+       '/photos'                                  => [Module\Profile\Photos\Index::class,      [R::GET         ]],
        '/photos/upload'                           => [Module\Profile\Photos\Upload::class,     [        R::POST]],
        '/profile'                                 => [Module\Profile\Profile::class,           [R::GET]],
        '/remote_follow'                           => [Module\Profile\RemoteFollow::class,      [R::GET, R::POST]],
@@ -276,7 +277,7 @@ return [
                        '/statuses/{id:\d+}/pin'             => [Module\Api\Mastodon\Statuses\Pin::class,             [        R::POST]],
                        '/statuses/{id:\d+}/unpin'           => [Module\Api\Mastodon\Statuses\Unpin::class,           [        R::POST]],
                        '/statuses/{id:\d+}/history'         => [Module\Api\Mastodon\Unimplemented::class,            [R::GET         ]], // not implemented
-                       '/statuses/{id:\d+}/source'          => [Module\Api\Mastodon\Unimplemented::class,            [R::GET         ]], // not implemented
+                       '/statuses/{id:\d+}/source'          => [Module\Api\Mastodon\Statuses\Source::class,          [R::GET         ]],
                        '/streaming/direct'                  => [Module\Api\Mastodon\Unimplemented::class,            [R::GET         ]], // not implemented
                        '/streaming/hashtag'                 => [Module\Api\Mastodon\Unimplemented::class,            [R::GET         ]], // not implemented
                        '/streaming/hashtag/local'           => [Module\Api\Mastodon\Unimplemented::class,            [R::GET         ]], // not implemented
@@ -342,6 +343,10 @@ return [
        '/acctlink'            => [Module\Acctlink::class,     [R::GET]],
        '/apps'                => [Module\Apps::class,         [R::GET]],
        '/attach/{item:\d+}'   => [Module\Attach::class,       [R::GET]],
+
+       // Mastodon route used by Fedifind to follow people who set their Webfinger address in their Twitter bio
+       '/authorize_interaction' => [Module\Contact\Follow::class, [R::GET, R::POST]],
+
        '/babel'               => [Module\Debug\Babel::class,  [R::GET, R::POST]],
        '/debug/ap'            => [Module\Debug\ActivityPubConversion::class,  [R::GET, R::POST]],
 
@@ -398,6 +403,10 @@ return [
        '/dirfind'                  => [Module\Search\Directory::class, [R::GET]],
        '/directory'                => [Module\Directory::class,        [R::GET]],
 
+       '/display/{guid}'                                        => [Module\Item\Display::class, [R::GET]],
+       '/display/feed-item/{uri-id}[.atom]'                     => [Module\Item\Feed::class,    [R::GET]],
+       '/display/feed-item/{uri-id}/{mode:conversation}[.atom]' => [Module\Item\Feed::class,    [R::GET]],
+
        '/featured/{nickname}'      => [Module\ActivityPub\Featured::class, [R::GET]],
 
        '/feed'     => [
@@ -545,9 +554,14 @@ return [
                '/{type}/{customsize:\d+}/{nickname_ext}'                  => [Module\Photo::class, [R::GET]],
        ],
 
+       // Kept for backwards-compatibility
+       // @TODO remove by version 2023.12
+       '/photos/{nickname}' => [Module\Profile\Photos\Index::class, [R::GET]],
+
        '/ping'              => [Module\Notifications\Ping::class, [R::GET]],
 
        '/post' => [
+               '/{post_id}/edit'                                          => [Module\Post\Edit::class,       [R::GET         ]],
                '/{post_id}/share'                                         => [Module\Post\Share::class,      [R::GET         ]],
                '/{item_id}/tag/add'                                       => [Module\Post\Tag\Add::class,    [        R::POST]],
                '/{item_id}/tag/remove[/{tag_name}]'                       => [Module\Post\Tag\Remove::class, [R::GET, R::POST]],
@@ -638,6 +652,8 @@ return [
 
        '/update_community[/{content}]'  => [Module\Update\Community::class,      [R::GET]],
 
+       '/update_display'                => [Module\Update\Display::class, [R::GET]],
+
        '/update_network' => [
                '[/]'                        => [Module\Update\Network::class, [R::GET]],
                '/archive/{from:\d\d\d\d-\d\d-\d\d}[/{to:\d\d\d\d-\d\d-\d\d}]' => [Module\Update\Network::class, [R::GET]],