aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/fil/libre/repwifiapp/activities/NetworkDetailsActivity.java
blob: f0aa26d2c0ad457aba662e850cd96f40f1e42474 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
//
// Copyright 2017 Filippo "Fil" Bergamo <fil.bergamo@riseup.net>
// 
// This file is part of RepWifiApp.
//
// RepWifiApp 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.
// 
// RepWifiApp 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 RepWifiApp.  If not, see <http://www.gnu.org/licenses/>.
// 
// ********************************************************************

package fil.libre.repwifiapp.activities;

import java.util.Date;


import fil.libre.repwifiapp.Commons;
import fil.libre.repwifiapp.R;
import fil.libre.repwifiapp.helpers.AccessPointInfo;

import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.text.format.DateFormat;
import android.view.Menu;
import android.view.View;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;
import android.widget.CompoundButton.OnCheckedChangeListener;

public class NetworkDetailsActivity extends Activity implements OnCheckedChangeListener {

	private AccessPointInfo currentNetwor;
	
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_network_details);
		
		CheckBox c = (CheckBox)findViewById(R.id.chk_show_pass_details);
		c.setOnCheckedChangeListener(this);
		
		Intent intent = getIntent();
		if (! intent.hasExtra(Commons.EXTRA_APINFO)){
			this.setResult(RESULT_CANCELED);
			this.finish();
			return;
		}
		
		this.currentNetwor = (AccessPointInfo)intent.getExtras().getSerializable(Commons.EXTRA_APINFO);
		if (this.currentNetwor == null){
			this.setResult(RESULT_CANCELED);
			this.finish();
			return;
		}
		
		loadNetwork(false);
		
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		//getMenuInflater().inflate(R.menu.activity_manage_networks, menu);
		return true;
	}
	
	private void loadNetwork(boolean showPassword){
		
		setTitle(this.currentNetwor.getSSID());
		
		TextView v = (TextView)findViewById(R.id.txt_net_details);
		v.setText("SSID: " + this.currentNetwor.getSSID());
		v.append("\nBSSID: " + this.currentNetwor.getBSSID());
		
		long lastused = this.currentNetwor.getLastTimeUsed();
		if (lastused > 0){
			Date ts = new Date(lastused);
			String formstring = "dd-MMM-yyyy kk:mm:ss";
			v.append("\nLast Used: " + DateFormat.format(formstring, ts));
		}
		
		if (showPassword){
			v.append("\n\nPassword:\n" + this.currentNetwor.getPassword());
		}else{
			v.append("\n\n\n");
		}
		
	}
	
	public void btnDeleteClick(View v){
		
		String msg = getResources().getString(R.string.msg_confirm_delete_network);
		String yes = getResources().getString(R.string.yes);
		String no = getResources().getString(R.string.no);
		
		AlertDialog.Builder dlgAlert  = new AlertDialog.Builder(this);                      
	    dlgAlert.setMessage(msg); 
	    dlgAlert.setPositiveButton(yes,new DialogInterface.OnClickListener() {
	        @Override
			public void onClick(DialogInterface dialog, int whichButton) {
	             returnResult(true);
	        }
	   });
	    dlgAlert.setNegativeButton(no,new DialogInterface.OnClickListener() {
	        @Override
			public void onClick(DialogInterface dialog, int whichButton) {
	        	 //nothing
	        }
	   });
	    
	    dlgAlert.setCancelable(true);
	    dlgAlert.create().show();
		
	}

	@Override
	public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
		
		if (buttonView == findViewById(R.id.chk_show_pass_details)){
			loadNetwork(isChecked);			
		}
		
	}
	
	private void returnResult(boolean delete){
		
		Intent i = new Intent();
		i.putExtra(Commons.EXTRA_DELETE, delete);
		i.putExtra(Commons.EXTRA_APINFO, this.currentNetwor);
		this.setResult(RESULT_OK,i);
		finish();
		
	}

	
	
}