/**
* Copyright (C) 2013 Jonathan Gillett, Joseph Heron
*
* 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 com.tinfoil.sms.adapter;
import java.util.List;
import android.app.Activity;
import android.content.Context;
import android.graphics.Typeface;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.tinfoil.sms.R;
import com.tinfoil.sms.dataStructures.Message;
import com.tinfoil.sms.utility.SMSUtility;
public class MessageAdapter extends ArrayAdapter<String[]> {
private static class MessageHolder
{
TextView c_name;
TextView c_message;
TextView c_date;
ImageView indicator;
}
private final Context context;
private final int layoutResourceId;
private List<String[]> data = null;
private int count;
public MessageAdapter(final Context context, final int layoutResourceId, final List<String[]> data, final int count) {
super(context, layoutResourceId, data);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.data = data;
this.count = count;
}
/**
* Add new rows to be formated to the end of the list
*
* @param data
* : List<String[]>
*/
public void addData(final List<String[]> data)
{
for (int i = 0; i < data.size(); i++)
{
this.add(data.get(i));
}
}
public void setCount(final int count)
{
this.count = count;
}
@Override
public View getView(final int position, final View convertView, final ViewGroup parent) {
View row = convertView;
MessageHolder holder = null;
if (row == null)
{
final LayoutInflater inflater = ((Activity) this.context).getLayoutInflater();
row = inflater.inflate(this.layoutResourceId, parent, false);
holder = new MessageHolder();
holder.c_name = (TextView) row.findViewById(R.id.c_name);
holder.c_message = (TextView) row.findViewById(R.id.c_message);
holder.c_date = (TextView) row.findViewById(R.id.c_date);
holder.indicator = (ImageView)row.findViewById(R.id.message_icon);
row.setTag(holder);
}
else
{
holder = (MessageHolder) row.getTag();
}
final String contact[] = this.data.get(position);
holder.c_name.setText(contact[0]);
holder.c_date.setText(contact[2]);
holder.c_message.setText(contact[1]);
if (position < this.count)
{
holder.c_name.setTypeface(null, Typeface.BOLD);
holder.c_message.setTypeface(null, Typeface.BOLD);
}
else
{
holder.c_name.setTypeface(null, Typeface.NORMAL);
holder.c_message.setTypeface(null, Typeface.NORMAL);
}
int sentValue = Integer.valueOf(contact[4]);
Log.v("type", "" + sentValue);
// Sent or received encrypted messages
if (sentValue == Message.SENT_ENCRYPTED || sentValue == Message.RECEIVED_ENCRYPTED)
{
holder.indicator.setImageResource(R.drawable.encrypted);
holder.indicator.setVisibility(ImageView.VISIBLE);
}
// Sent or received with obfuscation
else if (sentValue == Message.SENT_ENC_OBF || sentValue == Message.RECEIVED_ENC_OBF)
{
}
// Received but failed to decrypt
else if (sentValue == Message.RECEIVED_ENCRYPT_FAIL)
{
holder.indicator.setImageResource(R.drawable.decryption_failed);
holder.indicator.setVisibility(ImageView.VISIBLE);
}
// Received but de-obfuscation failed
else if (sentValue == Message.RECEIVED_OBF_FAIL)
{
}
// Received obfuscated message but decryption failed
else if (sentValue == Message.RECEIVED_ENC_OBF_FAIL)
{
}
// Default message
else if (sentValue == Message.SENT_DEFAULT || sentValue == Message.RECEIVED_DEFAULT)
{
holder.indicator.setImageResource(R.drawable.not_encrypted);
holder.indicator.setVisibility(ImageView.VISIBLE);
}
// Key exchange sent
else if (sentValue == Message.SENT_KEY_EXCHANGE_INIT ||
sentValue == Message.SENT_KEY_EXCHANGE_RESP)
{
holder.c_message.setText(R.string.key_exchange_sent);
SMSUtility.setKeyExchangeTypeface(holder.c_message);
holder.indicator.setImageResource(R.drawable.key_exchange);
holder.indicator.setVisibility(ImageView.VISIBLE);
}
// Key exchange received
else if (sentValue >= Message.RECEIVED_KEY_EXCHANGE_INIT)
{
holder.c_message.setText(R.string.key_exchange_received);
SMSUtility.setKeyExchangeTypeface(holder.c_message);
holder.indicator.setImageResource(R.drawable.key_exchange);
holder.indicator.setVisibility(ImageView.VISIBLE);
}
return row;
}
}