aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/fil/libre/repwifiapp/helpers/ConnectionStatus.java
blob: f7cb8d7b51d0afd830eb1a0d67bbe5b1f0786be8 (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
//
// 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.helpers;

import java.io.Serializable;

public class ConnectionStatus implements Serializable{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	public static final String STATUS_CONNECTED = "COMPLETED";
	public static final String STATUS_INACTIVE = "INACTIVE";
	public static final String STATUS_DISCONNECTED = "DISCONNECTED";
	public static final String STATUS_UNDEFINED = "UNDEFINED";
	
	public String status;
	public String SSID;
	public String BSSID;
	public String IP;
	
	private static final String F_SEP = "=";
	private static final String KeyStatus = "wpa_state";
	private static final String KeySSID = "ssid";
	private static final String KeyBSSID = "bssid";
	private static final String KeyIP = "ip_address";
	
	public static ConnectionStatus parseWpaCliOutput(String wpaCliOutput){
		
		if (wpaCliOutput == null){
			return null;
		}
		
		if (wpaCliOutput.trim().length() == 0){
			return null;
		}
		
		String[] lines = wpaCliOutput.split("\n");
		
		ConnectionStatus s = new ConnectionStatus();
		for(String line : lines){
			
			if (line.trim().equals("")){
				continue;
			}
			
			String[] fields = line.split(F_SEP);
			if(fields.length < 2){
				continue;
			}
			
			String key = fields[0];
			String val = fields[1];
			
			if (key.equals(KeyBSSID)){
				s.BSSID = val;
			}
			else if (key.equals(KeySSID)){
				s.SSID = val;
			}
			else if (key.equals(KeyStatus)){
				s.status = val;
			}
			else if (key.equals(KeyIP)){
				s.IP = val;
			}
			
		}
		
		return s;
				
	}
	
	public boolean isConnected(){
		
		if (this.status == null){
			return false;
		}
		
		if (this.status.equals(STATUS_CONNECTED)){
			return true;
		}else{
			return false;
		}
	}
	
}