VPNAnalyticsConstants.swift
915 Bytes
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
//
// Constants.swift
// VPNAnalytics
//
// Created by Mihail Konoplitskyi on 02.09.2022.
//
import Foundation
public final class VPNAnalyticsConstants {
//event keys
public enum VPNAnalyticsEvent: String {
case install = "install"
case startTrial = "trial"
case renew = "renew"
}
//API routes
enum APIRoutes {
//servers
case sendEvent
//ipify
case getMyIP
var urlString: String {
switch self {
case .sendEvent:
return "/api/events"
case .getMyIP:
return ""
}
}
var domain: String {
switch self {
case .sendEvent:
return AnalyticsAPIService.baseUrl
case .getMyIP:
return "https://api64.ipify.org"
}
}
}
}