aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/siacs/conversations/ui/ShareWithActivity.java
blob: 72c20a7a55809c5d0355cab4acd1d9811c0d9176 (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
package eu.siacs.conversations.ui;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import eu.siacs.conversations.R;
import eu.siacs.conversations.entities.Account;
import eu.siacs.conversations.entities.Contact;
import eu.siacs.conversations.entities.Conversation;
import eu.siacs.conversations.entities.Message;
import eu.siacs.conversations.utils.UIHelper;
import android.app.PendingIntent;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

public class ShareWithActivity extends XmppActivity {

	private LinearLayout conversations;
	private LinearLayout contacts;
	private boolean isImage = false;
	
	private UiCallback<Message> attachImageCallback = new UiCallback<Message>() {
		
		@Override
		public void userInputRequried(PendingIntent pi, Message object) {
			// TODO Auto-generated method stub
			
		}
		
		@Override
		public void success(Message message) {
			xmppConnectionService.sendMessage(message);
		}
		
		@Override
		public void error(int errorCode, Message object) {
			// TODO Auto-generated method stub
			
		}
	};

	@Override
	protected void onCreate(Bundle savedInstanceState) {

		super.onCreate(savedInstanceState);

		setContentView(R.layout.share_with);
		setTitle(getString(R.string.title_activity_sharewith));

		contacts = (LinearLayout) findViewById(R.id.contacts);
		conversations = (LinearLayout) findViewById(R.id.conversations);

	}

	public View createContactView(String name, String msgTxt, Bitmap bm) {
		View view = (View) getLayoutInflater().inflate(R.layout.contact, null);
		view.setBackgroundResource(R.drawable.greybackground);
		TextView contactName = (TextView) view
				.findViewById(R.id.contact_display_name);
		contactName.setText(name);
		TextView msg = (TextView) view.findViewById(R.id.contact_jid);
		msg.setText(msgTxt);
		ImageView imageView = (ImageView) view.findViewById(R.id.contact_photo);
		imageView.setImageBitmap(bm);
		return view;
	}

	@Override
	void onBackendConnected() {
		this.isImage = (getIntent().getType() != null && getIntent()
				.getType().startsWith("image/"));
		SharedPreferences preferences = PreferenceManager
				.getDefaultSharedPreferences(this);
		boolean useSubject = preferences.getBoolean("use_subject_in_muc", true);

		Set<Contact> displayedContacts = new HashSet<Contact>();
		conversations.removeAllViews();
		List<Conversation> convList = xmppConnectionService.getConversations();
		Collections.sort(convList, new Comparator<Conversation>() {
			@Override
			public int compare(Conversation lhs, Conversation rhs) {
				return (int) (rhs.getLatestMessage().getTimeSent() - lhs
						.getLatestMessage().getTimeSent());
			}
		});
		for (final Conversation conversation : convList) {
			if (!isImage || conversation.getMode() == Conversation.MODE_SINGLE) {
				View view = createContactView(
						conversation.getName(useSubject),
						conversation.getLatestMessage().getBody().trim(),
						UIHelper.getContactPicture(conversation, 48,
								this.getApplicationContext(), false));
				view.setOnClickListener(new OnClickListener() {

					@Override
					public void onClick(View v) {
						share(conversation);
					}
				});
				conversations.addView(view);
				displayedContacts.add(conversation.getContact());
			}
		}
		contacts.removeAllViews();
		List<Contact> contactsList = new ArrayList<Contact>();
		for (Account account : xmppConnectionService.getAccounts()) {
			for (Contact contact : account.getRoster().getContacts()) {
				if (!displayedContacts.contains(contact)
						&& (contact.showInRoster())) {
					contactsList.add(contact);
				}
			}
		}

		Collections.sort(contactsList, new Comparator<Contact>() {
			@Override
			public int compare(Contact lhs, Contact rhs) {
				return lhs.getDisplayName().compareToIgnoreCase(
						rhs.getDisplayName());
			}
		});

		for (int i = 0; i < contactsList.size(); ++i) {
			final Contact con = contactsList.get(i);
			View view = createContactView(
					con.getDisplayName(),
					con.getJid(),
					UIHelper.getContactPicture(con, 48,
							this.getApplicationContext(), false));
			view.setOnClickListener(new OnClickListener() {

				@Override
				public void onClick(View v) {
					Conversation conversation = xmppConnectionService
							.findOrCreateConversation(con.getAccount(),
									con.getJid(), false);
					share(conversation);
				}
			});
			contacts.addView(view);
		}
	}
	
	private void share(Conversation conversation) {
		String sharedText = null;
		if (isImage) {
			Uri uri = (Uri) getIntent().getParcelableExtra(Intent.EXTRA_STREAM);
			Log.d(LOGTAG,uri.toString());
			ShareWithActivity.this.xmppConnectionService.attachImageToConversation(conversation, uri,attachImageCallback);
		} else {
			sharedText = getIntent().getStringExtra(
				Intent.EXTRA_TEXT);
		}
		switchToConversation(conversation, sharedText, true);
		finish();
	}

}