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 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/main/java/com/juick/www/controllers/Compat.java (limited to 'src/main/java/com/juick') 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"); + } +} -- cgit v1.2.3