owenclave / app/src/main/java/io/nekohasekai/sagernet/ui/profile/Http3SettingsActivity.kt

github - dev - back to tree - upstream
/****************************************************************************** * * * Copyright (C) 2025 dyhkwong * * * * 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 . * * * ******************************************************************************/ package io.nekohasekai.sagernet.ui.profile import android.os.Bundle import androidx.preference.EditTextPreference import androidx.preference.PreferenceFragmentCompat import androidx.preference.SwitchPreference import io.nekohasekai.sagernet.Key import io.nekohasekai.sagernet.R import io.nekohasekai.sagernet.database.DataStore import io.nekohasekai.sagernet.database.preference.EditTextPreferenceModifiers import io.nekohasekai.sagernet.fmt.http3.Http3Bean import io.nekohasekai.sagernet.ktx.unwrapIDN class Http3SettingsActivity : ProfileSettingsActivity() { override fun createEntity() = Http3Bean() override fun Http3Bean.init() { DataStore.profileName = name DataStore.serverAddress = serverAddress DataStore.serverPort = serverPort DataStore.serverUsername = username DataStore.serverPassword = password DataStore.serverSNI = sni DataStore.serverCertificates = certificates DataStore.serverPinnedCertificateChain = pinnedPeerCertificateChainSha256 DataStore.serverPinnedCertificatePublicKey = pinnedPeerCertificatePublicKeySha256 DataStore.serverPinnedCertificate = pinnedPeerCertificateSha256 DataStore.serverEchEnabled = echEnabled DataStore.serverEchConfig = echConfig DataStore.serverAllowInsecure = allowInsecure DataStore.serverMtlsCertificate = mtlsCertificate DataStore.serverMtlsCertificatePrivateKey = mtlsCertificatePrivateKey DataStore.serverServerNameToVerify = serverNameToVerify } override fun Http3Bean.serialize() { name = DataStore.profileName serverAddress = DataStore.serverAddress.unwrapIDN() serverPort = DataStore.serverPort username = DataStore.serverUsername password = DataStore.serverPassword sni = DataStore.serverSNI certificates = DataStore.serverCertificates pinnedPeerCertificateChainSha256 = DataStore.serverPinnedCertificateChain pinnedPeerCertificatePublicKeySha256 = DataStore.serverPinnedCertificatePublicKey pinnedPeerCertificateSha256 = DataStore.serverPinnedCertificate echEnabled = DataStore.serverEchEnabled echConfig = DataStore.serverEchConfig allowInsecure = DataStore.serverAllowInsecure mtlsCertificate = DataStore.serverMtlsCertificate mtlsCertificatePrivateKey = DataStore.serverMtlsCertificatePrivateKey serverNameToVerify = DataStore.serverServerNameToVerify } override fun PreferenceFragmentCompat.createPreferences( savedInstanceState: Bundle?, rootKey: String?, ) { addPreferencesFromResource(R.xml.http3_preferences) findPreference(Key.SERVER_PORT)!!.apply { setOnBindEditTextListener(EditTextPreferenceModifiers.Port) } findPreference(Key.SERVER_PASSWORD)!!.apply { summaryProvider = PasswordSummaryProvider } val echEnabled = findPreference(Key.SERVER_ECH_ENABLED)!! val echConfig = findPreference(Key.SERVER_ECH_CONFIG)!! echConfig.isEnabled = echEnabled.isChecked echEnabled.setOnPreferenceChangeListener { _, newValue -> echConfig.isEnabled = newValue as Boolean true } } }