aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-12-22 03:46:12 +0300
committerGravatar Vitaly Takmazov2022-12-22 04:18:27 +0300
commitd4df81c28908c593c2b59f2596e4e380492b32d0 (patch)
tree046e58ccb5075dcbba83a68d031d57a00d6b775a /src
parent15fbc16291e0a15cf05e9b4477eaf8709833d3a0 (diff)
www: Mastodon-compatible `/share` endpoint
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/juick/www/controllers/Compat.java33
-rw-r--r--src/test/java/com/juick/server/tests/ServerTests.java4
2 files changed, 37 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+ */
+
+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"));
+ }
}