aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/org/pacien/tincapp/data/VpnInterfaceConfiguration.kt
blob: 937213e8ad9b236117b45602e922ad1b7f11f21e (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
/*
 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
 * Copyright (C) 2017-2020 Pacien TRAN-GIRARD
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package org.pacien.tincapp.data

import org.apache.commons.configuration2.Configuration
import org.apache.commons.configuration2.FileBasedConfiguration
import org.apache.commons.configuration2.PropertiesConfiguration
import org.apache.commons.configuration2.builder.FileBasedConfigurationBuilder
import org.apache.commons.configuration2.builder.fluent.Configurations
import org.apache.commons.configuration2.builder.fluent.Parameters
import org.pacien.tincapp.extensions.ApacheConfiguration.getCidrList
import org.pacien.tincapp.extensions.ApacheConfiguration.getIntList
import org.pacien.tincapp.extensions.ApacheConfiguration.getStringList
import org.pacien.tincapp.extensions.Java.applyIgnoringException
import java.io.File

/**
 * @author pacien
 */
data class VpnInterfaceConfiguration(val addresses: List<CidrAddress> = emptyList(),
                                     val routes: List<CidrAddress> = emptyList(),
                                     val dnsServers: List<String> = emptyList(),
                                     val searchDomains: List<String> = emptyList(),
                                     val allowedApplications: List<String> = emptyList(),
                                     val disallowedApplications: List<String> = emptyList(),
                                     val allowedFamilies: List<Int> = emptyList(),
                                     val allowBypass: Boolean = false,
                                     val blocking: Boolean = false,
                                     val mtu: Int? = null,
                                     val reconnectOnNetworkChange: Boolean = true) {
  companion object {
    private const val KEY_ADDRESSES = "Address"
    private const val KEY_ROUTES = "Route"
    private const val KEY_DNS_SERVERS = "DNSServer"
    private const val KEY_SEARCH_DOMAINS = "SearchDomain"
    private const val KEY_ALLOWED_APPLICATIONS = "AllowApplication"
    private const val KEY_DISALLOWED_APPLICATIONS = "DisallowApplication"
    private const val KEY_ALLOWED_FAMILIES = "AllowFamily"
    private const val KEY_ALLOW_BYPASS = "AllowBypass"
    private const val KEY_BLOCKING = "Blocking"
    private const val KEY_MTU = "MTU"
    private const val KEY_RECONNECT_ON_NETWORK_CHANGE = "ReconnectOnNetworkChange"

    private const val INVITATION_KEY_ADDRESSES = "Ifconfig"
    private const val INVITATION_KEY_ROUTES = "Route"

    fun fromIfaceConfiguration(f: File) = fromIfaceConfiguration(Configurations().properties(f))
    private fun fromIfaceConfiguration(c: Configuration) = VpnInterfaceConfiguration(
      c.getCidrList(KEY_ADDRESSES),
      c.getCidrList(KEY_ROUTES),
      c.getStringList(KEY_DNS_SERVERS),
      c.getStringList(KEY_SEARCH_DOMAINS),
      c.getStringList(KEY_ALLOWED_APPLICATIONS),
      c.getStringList(KEY_DISALLOWED_APPLICATIONS),
      c.getIntList(KEY_ALLOWED_FAMILIES),
      c.getBoolean(KEY_ALLOW_BYPASS, false),
      c.getBoolean(KEY_BLOCKING, false),
      c.getInteger(KEY_MTU, null),
      c.getBoolean(KEY_RECONNECT_ON_NETWORK_CHANGE, true))

    fun fromInvitation(f: File) = fromInvitation(Configurations().properties(f))
    private fun fromInvitation(c: Configuration) = VpnInterfaceConfiguration(
      c.getStringList(INVITATION_KEY_ADDRESSES)
        .mapNotNull { applyIgnoringException(CidrAddress.Companion::fromSlashSeparated, it) },
      c.getStringList(INVITATION_KEY_ROUTES)
        .map { it.substringBefore(' ') }
        .map { CidrAddress.fromSlashSeparated(it) })
  }

  fun write(f: File) = FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration::class.java)
    .configure(Parameters().properties().setFile(f.apply { createNewFile() })).let { builder ->
      builder.configuration.let { cfg ->
        addresses.forEach { cfg.addProperty(KEY_ADDRESSES, it.toSlashSeparated()) }
        routes.forEach { cfg.addProperty(KEY_ROUTES, it.toSlashSeparated()) }
      }
      builder.save()
    }
}