aboutsummaryrefslogtreecommitdiff
path: root/Sources
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2023-12-22 20:45:04 -0700
committerNavan Chauhan <navanchauhan@gmail.com>2023-12-22 20:45:04 -0700
commitb89c980ee13eafe0b14202e40617d4ed3c2262f7 (patch)
tree1434c07fe55728555f186dfd35196b2213565d2c /Sources
parent9fc992d316ffb2773df1a1fd352602cedadce2be (diff)
add URL: redirect to server1.1.2
Diffstat (limited to 'Sources')
-rw-r--r--Sources/swift-gopher/gopherHandler.swift8
1 files changed, 8 insertions, 0 deletions
diff --git a/Sources/swift-gopher/gopherHandler.swift b/Sources/swift-gopher/gopherHandler.swift
index cd150e3..0ac5c31 100644
--- a/Sources/swift-gopher/gopherHandler.swift
+++ b/Sources/swift-gopher/gopherHandler.swift
@@ -334,6 +334,14 @@ final class GopherHandler: ChannelInboundHandler {
return .string(prepareGopherMenu(path: preparePath()))
}
+ // Check if request is an HTTP url
+ if request.hasPrefix("URL:") {
+ let url = String(request.dropFirst(4))
+ return .string(
+ "<!DOCTYPE html><html><head><meta http-equiv=\"refresh\" content=\"0; url=\(url)\" /></head><body></body></html>"
+ )
+ }
+
// Again, fix for the iOS client. Might as well make my own client
if request.hasSuffix("\n") {
request = String(request.dropLast())