]> Sergey Matveev's repositories - tofuproxy.git/blob - rounds/habrImage.go
Unify copyright comment format
[tofuproxy.git] / rounds / habrImage.go
1 // tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
2 //              manager, WARC/geminispace browser
3 // Copyright (C) 2021-2024 Sergey Matveev <stargrave@stargrave.org>
4 //
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, version 3 of the License.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 package rounds
18
19 import (
20         "net/http"
21         "strings"
22 )
23
24 func RoundHabrImage(
25         host string,
26         resp *http.Response,
27         w http.ResponseWriter,
28         req *http.Request,
29 ) (bool, error) {
30         if ((host == "habrastorage.org") || (host == "hsto.org")) &&
31                 strings.Contains(req.URL.Path, "r/w780q1/") {
32                 req.URL.Path = strings.Replace(req.URL.Path, "r/w780q1/", "", 1)
33                 http.Redirect(w, req, req.URL.String(), http.StatusFound)
34                 return false, nil
35         }
36         return true, nil
37 }