From d4df81c28908c593c2b59f2596e4e380492b32d0 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 22 Dec 2022 03:46:12 +0300 Subject: www: Mastodon-compatible `/share` endpoint --- .../java/com/juick/www/controllers/Compat.java | 33 ++++++++++++++++++++++ .../java/com/juick/server/tests/ServerTests.java | 4 +++ 2 files changed, 37 insertions(+) create mode 100644 src/main/java/com/juick/www/controllers/Compat.java (limited to 'src') diff --git a/src/main/java/com/juick/www/controllers/Compat.java b/src/main/java/com/juick/www/controllers/Compat.java new file mode 100644 index 00000000..ebf584dc --- /dev/null +++ b/src/main/java/com/juick/www/controllers/Compat.java @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2008-2022, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package com.juick.www.controllers; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.servlet.mvc.support.RedirectAttributes; +import org.springframework.web.servlet.view.RedirectView; + +@Controller +public class Compat { + @GetMapping("/share") + public RedirectView share(@RequestParam String text, RedirectAttributes attributes) { + attributes.addAttribute("body", text); + return new RedirectView("/post"); + } +} diff --git a/src/test/java/com/juick/server/tests/ServerTests.java b/src/test/java/com/juick/server/tests/ServerTests.java index 236c113b..a892bcf4 100644 --- a/src/test/java/com/juick/server/tests/ServerTests.java +++ b/src/test/java/com/juick/server/tests/ServerTests.java @@ -2764,4 +2764,8 @@ public class ServerTests { assertThat(messagesService.getMessages(ugnich, List.of(mid)).size(), is(1)); assertThat(messagesService.getMessages(ugnich, List.of(mid)).get(0).isUnread(), is(false)); } + @Test + public void shareUrlShouldRedirectToPost() throws Exception { + mockMvc.perform(get("/share?text=Hello\nWorld")).andExpect(redirectedUrl("/post?body=Hello%0AWorld")); + } } -- cgit v1.2.3