aboutsummaryrefslogtreecommitdiff
path: root/Sources/swiftGopherClient/gopherRequestResponseHandler.swift
blob: 0cd040ad707ef7361bd82132b38532371bf9655b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//
//  gopherRequestResponseHandler.swift
//
//
//  Created by Navan Chauhan on 12/12/23.
//

import Foundation
import NIO

final class GopherRequestResponseHandler: ChannelInboundHandler {
    typealias InboundIn = ByteBuffer
    typealias OutboundOut = ByteBuffer

    private var accumulatedData: ByteBuffer
    private let message: String
    private let completion: (Result<String, Error>) -> Void

    init(message: String, completion: @escaping (Result<String, Error>) -> Void) {
        self.message = message
        self.completion = completion
        self.accumulatedData = ByteBuffer()
    }

    func channelActive(context: ChannelHandlerContext) {
        var buffer = context.channel.allocator.buffer(capacity: message.utf8.count)
        buffer.writeString(message)
        context.writeAndFlush(self.wrapOutboundOut(buffer), promise: nil)
    }

    func channelRead(context: ChannelHandlerContext, data: NIOAny) {
        var buffer = unwrapInboundIn(data)
        accumulatedData.writeBuffer(&buffer)
        if let receivedString = buffer.getString(at: 0, length: buffer.readableBytes) {
            print("Received from server: \(receivedString)")
        }
        //completion(.success(receivedString))
        //context.close(promise: nil)
    }
    
    func channelInactive(context: ChannelHandlerContext) {
            // Parse GopherServerResponse
        parseGopherServerResponse(response: accumulatedData.readString(length: accumulatedData.readableBytes) ?? "")
            //completion(.success(accumulatedData.readString(length: accumulatedData.readableBytes) ?? ""))
        }

    func errorCaught(context: ChannelHandlerContext, error: Error) {
        print("Error: ", error)
        context.close(promise: nil)
    }
    
    func createGopherItem(rawLine: String, itemType: gopherItemType = .info) -> gopherItem {
        var item = gopherItem(rawLine: rawLine)
        item.parsedItemType = itemType
        
        if rawLine.isEmpty {
            item.valid = false
        } else {
            let components = rawLine.components(separatedBy: "\t")
            
            // Handle cases where rawLine does not have any itemType in the first character
            item.message = String(components[0].dropFirst())
            
            if components.indices.contains(1) {
                item.selector = String(components[1])
            }
            
            if components.indices.contains(2) {
                item.host = String(components[2])
            }
            
            if components.indices.contains(3) {
                item.port = Int(String(components[3])) ?? 70
            }
        }
        
        return item
    }
    
    func parseGopherServerResponse(response: String) {
        var gopherServerResponse: [gopherItem] = []
        
        print("parsing")
        let carriageReturnCount = response.filter({ $0 == "\r" }).count
        let newlineCarriageReturnCount = response.filter({ $0 == "\r\n" }).count
        print("Carriage Returns: \(carriageReturnCount), Newline + Carriage Returns: \(newlineCarriageReturnCount)")
        
        for line in response.split(separator: "\r\n") {
            let lineItemType = getGopherFileType(item: "\(line.first ?? " ")")
            let item = createGopherItem(rawLine: String(line), itemType: lineItemType)
            print(item.message)
            gopherServerResponse.append(item)
            
        }
        
        print("done parsing")
        
        completion(.success(response))
    }
}

struct gopherItem {
    var rawLine: String
    var message: String = ""
    var parsedItemType: gopherItemType = .info
    var host: String = "error.host"
    var port: Int = 1
    var selector: String = ""
    var valid: Bool = true
}