Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AccessTokenFragment.java « channel « mumla « lublin « se « java « main « src « app - gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2001606150e98a882e33956ab02d02e0630b938 (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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 * Copyright (C) 2014 Andrew Comminos
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

package se.lublin.mumla.channel;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.view.inputmethod.EditorInfo;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.TextView.OnEditorActionListener;

import java.util.ArrayList;
import java.util.List;

import se.lublin.mumla.Constants;
import se.lublin.mumla.R;
import se.lublin.mumla.db.DatabaseProvider;
import se.lublin.mumla.util.HumlaServiceFragment;

public class AccessTokenFragment extends HumlaServiceFragment {

    public interface AccessTokenListener {
        public void onAccessTokenAdded(long serverId, String token);
        public void onAccessTokenRemoved(long serverId, String token);
    }

	private List<String> mTokens;
	
	private ListView mTokenList;
	private TokenAdapter mTokenAdapter;
	private EditText mTokenField;

    private DatabaseProvider mProvider;

    @Override
	public void onAttach(Activity activity) {
		super.onAttach(activity);

        mTokens = new ArrayList<String>(getAccessTokens());
        mTokenAdapter = new TokenAdapter(activity, mTokens);

        try {
            mProvider = (DatabaseProvider) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString() + " must implement DatabaseProvider");
        }
	}
	
	@Override
	public View onCreateView(LayoutInflater inflater, ViewGroup container,
			Bundle savedInstanceState) {
		View view = inflater.inflate(R.layout.fragment_tokens, container, false);

        mTokenList = (ListView) view.findViewById(R.id.tokenList);
        mTokenList.setAdapter(mTokenAdapter);

        mTokenField = (EditText) view.findViewById(R.id.tokenField);
        mTokenField.setOnEditorActionListener(new OnEditorActionListener() {
			
			@Override
			public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
				if(actionId == EditorInfo.IME_ACTION_SEND) {
					addToken();
					return true;
				}
				return false;
			}
		});
		
		ImageButton addButton = (ImageButton) view.findViewById(R.id.tokenAddButton);
		addButton.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				addToken();
			}
		});
		
		return view;
	}

	private void addToken() {
		String tokenText = mTokenField.getText().toString().trim();
		
		if(tokenText.equals(""))
			return;

        mTokenField.setText("");
		
		Log.i(Constants.TAG, "Adding token: " + tokenText);
		
		mTokens.add(tokenText);
		mTokenAdapter.notifyDataSetChanged();

		mTokenList.smoothScrollToPosition(mTokens.size() - 1);
        mProvider.getDatabase().addAccessToken(getServerId(), tokenText);
		if (getService().isConnected()) {
			getService().getSession().sendAccessTokens(mTokens);
		}
    }

    private long getServerId() {
        return getArguments().getLong("server");
    }

    private List<String> getAccessTokens() {
        return getArguments().getStringArrayList("access_tokens");
    }
	
	private class TokenAdapter extends ArrayAdapter<String> {

		public TokenAdapter(Context context,
				List<String> objects) {
			super(context, android.R.layout.simple_list_item_1, objects);
		}
		
		@Override
		public View getView(final int position, View convertView, ViewGroup parent) {
			View view = convertView;
			if(convertView == null) {
				view = getActivity().getLayoutInflater().inflate(R.layout.token_row, null, false);
			}
			
			final String token = getItem(position);
			
			TextView title = (TextView) view.findViewById(R.id.tokenItemTitle);
			title.setText(token);
			
			ImageButton deleteButton = (ImageButton) view.findViewById(R.id.tokenItemDelete);
			deleteButton.setOnClickListener(new OnClickListener() {
				
				@Override
				public void onClick(View v) {
                    mTokens.remove(position);
					notifyDataSetChanged();
                    mProvider.getDatabase().removeAccessToken(getServerId(), token);
					if (getService().isConnected()) {
						getService().getSession().sendAccessTokens(mTokens);
					}
                }
			});

			return view;
		}
		
	}

}