123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /**
- * ownCloud Android client application
- *
- * @author masensio
- * @author David A. Velasco
- * Copyright (C) 2015 ownCloud Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2,
- * as published by the Free Software Foundation.
- *
- * 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 <http://www.gnu.org/licenses/>.
- *
- */
- package com.owncloud.android.ui.adapter;
- import android.net.http.SslCertificate;
- import android.view.View;
- import com.owncloud.android.databinding.SslUntrustedCertLayoutBinding;
- import com.owncloud.android.ui.dialog.SslUntrustedCertDialog;
- import java.text.DateFormat;
- import java.util.Date;
- import androidx.annotation.NonNull;
- /**
- * TODO
- */
- public class SslCertificateViewAdapter implements SslUntrustedCertDialog.CertificateViewAdapter {
- //private final static String TAG = SslCertificateViewAdapter.class.getSimpleName();
- private SslCertificate mCertificate;
- /**
- * Constructor
- *
- * @param certificate the SSL certificate
- */
- public SslCertificateViewAdapter(SslCertificate certificate) {
- mCertificate = certificate;
- }
- @Override
- public void updateCertificateView(SslUntrustedCertLayoutBinding binding) {
- if (mCertificate != null) {
- binding.nullCert.setVisibility(View.GONE);
- showSubject(mCertificate.getIssuedTo(), binding);
- showIssuer(mCertificate.getIssuedBy(), binding);
- showValidity(mCertificate.getValidNotBeforeDate(), mCertificate.getValidNotAfterDate(), binding);
- } else {
- binding.nullCert.setVisibility(View.VISIBLE);
- }
- }
- private void showValidity(Date notBefore, Date notAfter, @NonNull SslUntrustedCertLayoutBinding binding) {
- DateFormat dateFormat = DateFormat.getDateInstance();
- binding.valueValidityFrom.setText(dateFormat.format(notBefore));
- binding.valueValidityTo.setText(dateFormat.format(notAfter));
- }
- private void showSubject(SslCertificate.DName subject, @NonNull SslUntrustedCertLayoutBinding binding) {
- binding.valueSubjectCN.setText(subject.getCName());
- binding.valueSubjectCN.setVisibility(View.VISIBLE);
- binding.valueSubjectO.setText(subject.getOName());
- binding.valueSubjectO.setVisibility(View.VISIBLE);
- binding.valueSubjectOU.setText(subject.getUName());
- binding.valueSubjectOU.setVisibility(View.VISIBLE);
- // SslCertificates don't offer this information
- binding.valueSubjectC.setVisibility(View.GONE);
- binding.valueSubjectST.setVisibility(View.GONE);
- binding.valueSubjectL.setVisibility(View.GONE);
- binding.labelSubjectC.setVisibility(View.GONE);
- binding.labelSubjectST.setVisibility(View.GONE);
- binding.labelSubjectL.setVisibility(View.GONE);
- }
- private void showIssuer(SslCertificate.DName issuer, @NonNull SslUntrustedCertLayoutBinding binding) {
- binding.valueIssuerCN.setText(issuer.getCName());
- binding.valueIssuerCN.setVisibility(View.VISIBLE);
- binding.valueIssuerO.setText(issuer.getOName());
- binding.valueIssuerO.setVisibility(View.VISIBLE);
- binding.valueIssuerOU.setText(issuer.getUName());
- binding.valueIssuerOU.setVisibility(View.VISIBLE);
- // SslCertificates don't offer this information
- binding.valueIssuerC.setVisibility(View.GONE);
- binding.valueIssuerST.setVisibility(View.GONE);
- binding.valueIssuerL.setVisibility(View.GONE);
- binding.labelIssuerC.setVisibility(View.GONE);
- binding.labelIssuerST.setVisibility(View.GONE);
- binding.labelIssuerL.setVisibility(View.GONE);
- }
- }
|