blob: e599aa2aba9e74c708e934029fb6ad178573a2d2 [file] [log] [blame]
alisionf76de3b2013-04-16 15:35:22 -04001/*
Alexandre Lisionc1024c02014-01-06 11:12:53 -05002 * Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
alisionf76de3b2013-04-16 15:35:22 -04003 *
4 * Author: Adrien Beraud <adrien.beraud@gmail.com>
alision11e8e162013-05-28 10:33:14 -04005 * Alexandre Lision <alexandre.lision@savoirfairelinux.com>
alisionf76de3b2013-04-16 15:35:22 -04006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 * Additional permission under GNU GPL version 3 section 7:
22 *
23 * If you modify this program, or any covered work, by linking or
24 * combining it with the OpenSSL project's OpenSSL library (or a
25 * modified version of that library), containing parts covered by the
26 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
27 * grants you additional permission to convey the resulting work.
28 * Corresponding Source for a non-source form of such a combination
29 * shall include the source code for the parts of OpenSSL used as well
30 * as that of the covered work.
31 */
Alexandre Lision064e1e02013-10-01 16:18:42 -040032package org.sflphone.client;
alisionf76de3b2013-04-16 15:35:22 -040033
Alexandre Lision35577132013-12-06 15:21:15 -050034import java.io.File;
35import java.io.FileOutputStream;
36import java.io.IOException;
37import java.io.InputStream;
Alexandre Lision5ed2c972013-10-11 15:36:33 -040038import java.io.InvalidObjectException;
Alexandre Lision35577132013-12-06 15:21:15 -050039import java.io.OutputStream;
alisionbd45a822013-06-06 17:35:35 -040040import java.util.Timer;
41import java.util.TimerTask;
alision84813a12013-05-27 17:40:39 -040042
Alexandre Lision064e1e02013-10-01 16:18:42 -040043import org.sflphone.R;
Alexandre Lisionf02190d2013-12-12 17:26:12 -050044import org.sflphone.fragments.AboutFragment;
45import org.sflphone.fragments.AccountsManagementFragment;
46import org.sflphone.fragments.CallListFragment;
Alexandre Lision064e1e02013-10-01 16:18:42 -040047import org.sflphone.fragments.ContactListFragment;
48import org.sflphone.fragments.DialingFragment;
49import org.sflphone.fragments.HistoryFragment;
50import org.sflphone.fragments.HomeFragment;
51import org.sflphone.fragments.MenuFragment;
52import org.sflphone.interfaces.CallInterface;
Alexandre Lision064e1e02013-10-01 16:18:42 -040053import org.sflphone.model.CallContact;
54import org.sflphone.model.Conference;
55import org.sflphone.model.SipCall;
56import org.sflphone.receivers.CallReceiver;
57import org.sflphone.service.CallManagerCallBack;
58import org.sflphone.service.ISipService;
59import org.sflphone.service.SipService;
Alexandre Lision450458a2013-11-22 11:33:12 -050060import org.sflphone.views.SlidingUpPanelLayout;
61import org.sflphone.views.SlidingUpPanelLayout.PanelSlideListener;
Alexandre Lision064e1e02013-10-01 16:18:42 -040062
alisionf76de3b2013-04-16 15:35:22 -040063import android.app.Activity;
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040064import android.app.AlertDialog;
alisionf76de3b2013-04-16 15:35:22 -040065import android.content.ComponentName;
66import android.content.Context;
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040067import android.content.DialogInterface;
alisionf76de3b2013-04-16 15:35:22 -040068import android.content.Intent;
alision84813a12013-05-27 17:40:39 -040069import android.content.IntentFilter;
alisionf76de3b2013-04-16 15:35:22 -040070import android.content.ServiceConnection;
Alexandre Lision35577132013-12-06 15:21:15 -050071import android.content.res.AssetManager;
alisionf57d8a62013-07-02 09:37:12 -040072import android.content.res.Configuration;
alision55c36cb2013-06-14 14:57:38 -040073import android.database.Cursor;
Alexandre Lisionc59685a2013-10-04 16:36:36 -040074import android.net.Uri;
alisionf76de3b2013-04-16 15:35:22 -040075import android.os.Bundle;
76import android.os.IBinder;
alision5f899632013-04-22 17:26:56 -040077import android.os.RemoteException;
Alexandre Lision35577132013-12-06 15:21:15 -050078import android.preference.PreferenceManager;
Alexandre Lisionc59685a2013-10-04 16:36:36 -040079import android.provider.ContactsContract;
alision55c36cb2013-06-14 14:57:38 -040080import android.provider.ContactsContract.CommonDataKinds.Phone;
81import android.provider.ContactsContract.CommonDataKinds.SipAddress;
alision9f7a6ec2013-05-24 16:26:26 -040082import android.support.v4.app.ActionBarDrawerToggle;
Alexandre Lisiona8b78722013-12-13 10:18:33 -050083import android.support.v4.app.Fragment;
84import android.support.v4.app.FragmentActivity;
Alexandre Lision18e30542013-12-13 11:32:07 -050085import android.support.v4.app.FragmentManager;
Alexandre Lisiona8b78722013-12-13 10:18:33 -050086import android.support.v4.app.FragmentManager.BackStackEntry;
alision9f7a6ec2013-05-24 16:26:26 -040087import android.support.v4.view.GravityCompat;
alision9f7a6ec2013-05-24 16:26:26 -040088import android.support.v4.widget.DrawerLayout;
alisionf76de3b2013-04-16 15:35:22 -040089import android.util.Log;
Alexandre Lision3ccccf02013-10-07 14:10:46 -040090import android.view.Gravity;
alision9f7a6ec2013-05-24 16:26:26 -040091import android.view.MenuItem;
92import android.view.View;
alision7297bdb2013-05-21 11:56:55 -040093import android.widget.RelativeLayout;
alision04a00182013-05-10 17:05:29 -040094import android.widget.Toast;
alisionf76de3b2013-04-16 15:35:22 -040095
Alexandre Lisiona8b78722013-12-13 10:18:33 -050096public class HomeActivity extends FragmentActivity implements DialingFragment.Callbacks, AccountsManagementFragment.Callbacks,
97 ContactListFragment.Callbacks, CallListFragment.Callbacks, HistoryFragment.Callbacks, CallInterface, MenuFragment.Callbacks {
alisionfde875f2013-05-28 17:01:54 -040098
Alexandre Lisionf02190d2013-12-12 17:26:12 -050099 static final String TAG = HomeActivity.class.getSimpleName();
alisionf76de3b2013-04-16 15:35:22 -0400100
alision9f7a6ec2013-05-24 16:26:26 -0400101 private ContactListFragment mContactsFragment = null;
alision907bde72013-06-20 14:40:37 -0400102 private MenuFragment fMenu;
alisionf76de3b2013-04-16 15:35:22 -0400103
alision9f7a6ec2013-05-24 16:26:26 -0400104 private boolean mBound = false;
105 private ISipService service;
alisionf76de3b2013-04-16 15:35:22 -0400106
alision2cb99562013-05-30 17:02:20 -0400107 public static final int REQUEST_CODE_PREFERENCES = 1;
alision9f7a6ec2013-05-24 16:26:26 -0400108 private static final int REQUEST_CODE_CALL = 2;
alisionf76de3b2013-04-16 15:35:22 -0400109
Alexandre Lision450458a2013-11-22 11:33:12 -0500110 SlidingUpPanelLayout mContactDrawer;
Alexandre Lision68900052013-11-01 11:34:56 -0400111 private DrawerLayout mNavigationDrawer;
alision9f7a6ec2013-05-24 16:26:26 -0400112 private ActionBarDrawerToggle mDrawerToggle;
alisionf76de3b2013-04-16 15:35:22 -0400113
alision58356b72013-06-03 17:13:36 -0400114 CallReceiver callReceiver;
Alexandre Lision9d052a12013-11-06 15:13:34 -0500115 private boolean isClosing = false;
116 private Timer t = new Timer();
alision84813a12013-05-27 17:40:39 -0400117
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500118 private Fragment fContent;
119
alision9f7a6ec2013-05-24 16:26:26 -0400120 /* called before activity is killed, e.g. rotation */
121 @Override
122 protected void onSaveInstanceState(Bundle bundle) {
123 super.onSaveInstanceState(bundle);
alision9f7a6ec2013-05-24 16:26:26 -0400124 getFragmentManager().putFragment(bundle, "ContactsListFragment", mContactsFragment);
125 Log.w(TAG, "onSaveInstanceState()");
126 }
127
128 @Override
129 public void onCreate(Bundle savedInstanceState) {
130 super.onCreate(savedInstanceState);
131
alision58356b72013-06-03 17:13:36 -0400132 callReceiver = new CallReceiver(this);
alision907bde72013-06-20 14:40:37 -0400133
Alexandre Lision269e6042013-12-11 16:15:13 -0500134 setContentView(R.layout.activity_home);
alision58356b72013-06-03 17:13:36 -0400135
alision9f7a6ec2013-05-24 16:26:26 -0400136 // Bind to LocalService
137 if (!mBound) {
138 Log.i(TAG, "onStart: Binding service...");
139 Intent intent = new Intent(this, SipService.class);
Alexandre Lision0f550ee2013-10-25 15:34:38 -0400140 startService(intent);
alision9f7a6ec2013-05-24 16:26:26 -0400141 bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
142 }
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400143
144 if (savedInstanceState != null) {
Alexandre Lision23628c12013-09-24 11:17:05 -0400145 mContactsFragment = (ContactListFragment) getFragmentManager().getFragment(savedInstanceState, "ContactsListFragment");
146 }
alision9f7a6ec2013-05-24 16:26:26 -0400147 if (mContactsFragment == null) {
148 mContactsFragment = new ContactListFragment();
alision9f7a6ec2013-05-24 16:26:26 -0400149 getFragmentManager().beginTransaction().replace(R.id.contacts_frame, mContactsFragment).commit();
150 }
alision2ec64f92013-06-17 17:28:58 -0400151
Alexandre Lision450458a2013-11-22 11:33:12 -0500152 mContactDrawer = (SlidingUpPanelLayout) findViewById(R.id.contact_panel);
153 // mContactDrawer.setShadowDrawable(getResources().getDrawable(R.drawable.above_shadow));
154 mContactDrawer.setAnchorPoint(0.3f);
155 mContactDrawer.setDragView(findViewById(R.id.contacts_frame));
156 mContactDrawer.setEnableDragViewTouchEvents(true);
Alexandre Lision450458a2013-11-22 11:33:12 -0500157 mContactDrawer.setPanelSlideListener(new PanelSlideListener() {
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400158
159 @Override
Alexandre Lision450458a2013-11-22 11:33:12 -0500160 public void onPanelSlide(View panel, float slideOffset) {
161 if (slideOffset < 0.2) {
162 if (getActionBar().isShowing()) {
163 getActionBar().hide();
164 }
165 } else {
166 if (!getActionBar().isShowing()) {
167 getActionBar().show();
168 }
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400169 }
170 }
Alexandre Lision450458a2013-11-22 11:33:12 -0500171
172 @Override
173 public void onPanelExpanded(View panel) {
174
175 }
176
177 @Override
178 public void onPanelCollapsed(View panel) {
179
180 }
181
182 @Override
183 public void onPanelAnchored(View panel) {
184
185 }
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400186 });
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400187
Alexandre Lision68900052013-11-01 11:34:56 -0400188 mNavigationDrawer = (DrawerLayout) findViewById(R.id.drawer_layout);
alisionf76de3b2013-04-16 15:35:22 -0400189
alision0b553832013-05-30 09:31:06 -0400190 // set a custom shadow that overlays the main content when the drawer opens
Alexandre Lision68900052013-11-01 11:34:56 -0400191 mNavigationDrawer.setDrawerShadow(R.drawable.drawer_shadow, GravityCompat.START);
alisionf76de3b2013-04-16 15:35:22 -0400192
alision9f7a6ec2013-05-24 16:26:26 -0400193 getActionBar().setDisplayHomeAsUpEnabled(true);
194 getActionBar().setHomeButtonEnabled(true);
alisionf76de3b2013-04-16 15:35:22 -0400195
alision9f7a6ec2013-05-24 16:26:26 -0400196 mDrawerToggle = new ActionBarDrawerToggle(this, /* host Activity */
Alexandre Lision68900052013-11-01 11:34:56 -0400197 mNavigationDrawer, /* DrawerLayout object */
alision9f7a6ec2013-05-24 16:26:26 -0400198 R.drawable.ic_drawer, /* nav drawer image to replace 'Up' caret */
199 R.string.drawer_open, /* "open drawer" description for accessibility */
200 R.string.drawer_close /* "close drawer" description for accessibility */
201 ) {
alision0b553832013-05-30 09:31:06 -0400202 @Override
alision9f7a6ec2013-05-24 16:26:26 -0400203 public void onDrawerClosed(View view) {
alision9f7a6ec2013-05-24 16:26:26 -0400204 invalidateOptionsMenu(); // creates call to onPrepareOptionsMenu()
205 }
alisionf76de3b2013-04-16 15:35:22 -0400206
alision0b553832013-05-30 09:31:06 -0400207 @Override
alision9f7a6ec2013-05-24 16:26:26 -0400208 public void onDrawerOpened(View drawerView) {
Alexandre Lision4d20c812013-12-12 17:44:50 -0500209 // getActionBar().setTitle(mDrawerTitle);
alision9f7a6ec2013-05-24 16:26:26 -0400210 invalidateOptionsMenu(); // creates call to onPrepareOptionsMenu()
211 }
212 };
alisionf76de3b2013-04-16 15:35:22 -0400213
Alexandre Lision68900052013-11-01 11:34:56 -0400214 mNavigationDrawer.setDrawerListener(mDrawerToggle);
alisionf76de3b2013-04-16 15:35:22 -0400215
alision9f7a6ec2013-05-24 16:26:26 -0400216 }
alisionf76de3b2013-04-16 15:35:22 -0400217
alisionf57d8a62013-07-02 09:37:12 -0400218 @Override
219 protected void onPostCreate(Bundle savedInstanceState) {
220 super.onPostCreate(savedInstanceState);
221 // Sync the toggle state after onRestoreInstanceState has occurred.
222 mDrawerToggle.syncState();
Alexandre Lision450458a2013-11-22 11:33:12 -0500223 if (mContactDrawer.isExpanded()) {
Alexandre Lisiond16bad92013-10-09 17:16:20 -0400224 getActionBar().hide();
225 }
alisionf57d8a62013-07-02 09:37:12 -0400226 }
alision465ceba2013-07-04 09:24:30 -0400227
alisionf57d8a62013-07-02 09:37:12 -0400228 @Override
229 public void onConfigurationChanged(Configuration newConfig) {
230 super.onConfigurationChanged(newConfig);
231 mDrawerToggle.onConfigurationChanged(newConfig);
232 }
alision3c5c2a92013-05-30 09:50:47 -0400233
alision9f7a6ec2013-05-24 16:26:26 -0400234 @Override
235 protected void onStart() {
236 Log.i(TAG, "onStart");
Alexandre Lision35577132013-12-06 15:21:15 -0500237
238 if (!PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getBoolean("installed", false)) {
239 PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).edit().putBoolean("installed", true).commit();
240
241 copyAssetFolder(getAssets(), "ringtones", getFilesDir().getAbsolutePath() + "/ringtones");
242 }
243
alision9f7a6ec2013-05-24 16:26:26 -0400244 super.onStart();
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400245
alision9f7a6ec2013-05-24 16:26:26 -0400246 }
alisionf76de3b2013-04-16 15:35:22 -0400247
Alexandre Lision35577132013-12-06 15:21:15 -0500248 private static boolean copyAssetFolder(AssetManager assetManager, String fromAssetPath, String toPath) {
249 try {
250 String[] files = assetManager.list(fromAssetPath);
251 new File(toPath).mkdirs();
252 Log.i(TAG, "Creating :" + toPath);
253 boolean res = true;
254 for (String file : files)
255 if (file.contains(".")) {
256 Log.i(TAG, "Copying file :" + fromAssetPath + "/" + file + " to " + toPath + "/" + file);
257 res &= copyAsset(assetManager, fromAssetPath + "/" + file, toPath + "/" + file);
258 } else {
259 Log.i(TAG, "Copying folder :" + fromAssetPath + "/" + file + " to " + toPath + "/" + file);
260 res &= copyAssetFolder(assetManager, fromAssetPath + "/" + file, toPath + "/" + file);
261 }
262 return res;
263 } catch (Exception e) {
264 e.printStackTrace();
265 return false;
266 }
267 }
268
269 private static boolean copyAsset(AssetManager assetManager, String fromAssetPath, String toPath) {
270 InputStream in = null;
271 OutputStream out = null;
272 try {
273 in = assetManager.open(fromAssetPath);
274 new File(toPath).createNewFile();
275 out = new FileOutputStream(toPath);
276 copyFile(in, out);
277 in.close();
278 in = null;
279 out.flush();
280 out.close();
281 out = null;
282 return true;
283 } catch (Exception e) {
284 e.printStackTrace();
285 return false;
286 }
287 }
288
289 private static void copyFile(InputStream in, OutputStream out) throws IOException {
290 byte[] buffer = new byte[1024];
291 int read;
292 while ((read = in.read(buffer)) != -1) {
293 out.write(buffer, 0, read);
294 }
295 }
296
alision9f7a6ec2013-05-24 16:26:26 -0400297 /* user gets back to the activity, e.g. through task manager */
298 @Override
299 protected void onRestart() {
300 super.onRestart();
301 }
alisionf76de3b2013-04-16 15:35:22 -0400302
alision9f7a6ec2013-05-24 16:26:26 -0400303 /* activity gets back to the foreground and user input */
304 @Override
305 protected void onResume() {
alision58356b72013-06-03 17:13:36 -0400306 super.onResume();
alision84813a12013-05-27 17:40:39 -0400307 IntentFilter intentFilter = new IntentFilter();
308 intentFilter.addAction(CallManagerCallBack.INCOMING_CALL);
309 intentFilter.addAction(CallManagerCallBack.INCOMING_TEXT);
310 intentFilter.addAction(CallManagerCallBack.CALL_STATE_CHANGED);
alision58356b72013-06-03 17:13:36 -0400311 registerReceiver(callReceiver, intentFilter);
alision907bde72013-06-20 14:40:37 -0400312
alision9f7a6ec2013-05-24 16:26:26 -0400313 }
alision907bde72013-06-20 14:40:37 -0400314
alisionbd45a822013-06-06 17:35:35 -0400315 @Override
316 public void onBackPressed() {
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400317
Alexandre Lision68900052013-11-01 11:34:56 -0400318 if (mNavigationDrawer.isDrawerVisible(Gravity.LEFT)) {
319 mNavigationDrawer.closeDrawer(Gravity.LEFT);
Alexandre Lision68855472013-10-10 16:20:46 -0400320 return;
Alexandre Lision3ccccf02013-10-07 14:10:46 -0400321 }
alision907bde72013-06-20 14:40:37 -0400322
Alexandre Lision450458a2013-11-22 11:33:12 -0500323 if (mContactDrawer.isExpanded() || mContactDrawer.isAnchored()) {
324 mContactDrawer.collapsePane();
alisionbd45a822013-06-06 17:35:35 -0400325 return;
326 }
alision2ec64f92013-06-17 17:28:58 -0400327
Alexandre Lisiond5934b52014-01-07 17:17:37 -0500328 if (getSupportFragmentManager().getBackStackEntryCount() > 1) {
329 popCustomBackStack();
Alexandre Lisionfc9b4e72013-12-13 14:55:25 -0500330 fMenu.backToHome();
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500331 return;
332 }
333
alisionbd45a822013-06-06 17:35:35 -0400334 if (isClosing) {
335 super.onBackPressed();
336 t.cancel();
337 finish();
338 } else {
alisionbd45a822013-06-06 17:35:35 -0400339 t.schedule(new TimerTask() {
340 @Override
341 public void run() {
342 isClosing = false;
343 }
344 }, 3000);
345 Toast.makeText(this, getResources().getString(R.string.close_msg), Toast.LENGTH_SHORT).show();
346 isClosing = true;
347 }
348 }
alisione2a38e12013-04-25 14:20:20 -0400349
Alexandre Lisiond5934b52014-01-07 17:17:37 -0500350 private void popCustomBackStack() {
351 BackStackEntry entry = getSupportFragmentManager().getBackStackEntryAt(0);
352 fContent = getSupportFragmentManager().findFragmentByTag(entry.getName());
353 FragmentManager fm = getSupportFragmentManager();
354 for(int i = 0; i < fm.getBackStackEntryCount() - 1; ++i) {
355 fm.popBackStack();
356 }
357 }
358
alision9f7a6ec2013-05-24 16:26:26 -0400359 /* activity no more in foreground */
360 @Override
361 protected void onPause() {
362 super.onPause();
alision58356b72013-06-03 17:13:36 -0400363 unregisterReceiver(callReceiver);
Alexandre Lisionb4a9e392013-10-01 14:39:43 -0400364 if (mBound) {
365 unbindService(mConnection);
366 mBound = false;
367 }
alision9f7a6ec2013-05-24 16:26:26 -0400368 }
alisionf76de3b2013-04-16 15:35:22 -0400369
alision9f7a6ec2013-05-24 16:26:26 -0400370 /* activity finishes itself or is being killed by the system */
371 @Override
372 protected void onDestroy() {
alision9f7a6ec2013-05-24 16:26:26 -0400373 super.onDestroy();
Alexandre Lisionb4a9e392013-10-01 14:39:43 -0400374 Log.i(TAG, "onDestroy: destroying service...");
375 Intent sipServiceIntent = new Intent(this, SipService.class);
376 stopService(sipServiceIntent);
alision9f7a6ec2013-05-24 16:26:26 -0400377 }
alision73424b62013-04-26 11:49:18 -0400378
alision55c36cb2013-06-14 14:57:38 -0400379 public void launchCallActivity(SipCall infos) {
Alexandre Lisionc59685a2013-10-04 16:36:36 -0400380
alision9f7a6ec2013-05-24 16:26:26 -0400381 Bundle bundle = new Bundle();
alisiondf1dac92013-06-27 17:35:53 -0400382 Conference tmp = new Conference("-1");
alision465ceba2013-07-04 09:24:30 -0400383
alisiondf1dac92013-06-27 17:35:53 -0400384 tmp.getParticipants().add(infos);
alision465ceba2013-07-04 09:24:30 -0400385
alisiondf1dac92013-06-27 17:35:53 -0400386 bundle.putParcelable("conference", tmp);
alision9f7a6ec2013-05-24 16:26:26 -0400387 Intent intent = new Intent().setClass(this, CallActivity.class);
alisiondf1dac92013-06-27 17:35:53 -0400388 intent.putExtra("resuming", false);
alision9f7a6ec2013-05-24 16:26:26 -0400389 intent.putExtras(bundle);
390 startActivityForResult(intent, REQUEST_CODE_CALL);
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400391
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400392 // overridePendingTransition(R.anim.slide_down, R.anim.slide_up);
alision9f7a6ec2013-05-24 16:26:26 -0400393 }
alisionf76de3b2013-04-16 15:35:22 -0400394
alision9f7a6ec2013-05-24 16:26:26 -0400395 /** Defines callbacks for service binding, passed to bindService() */
396 private ServiceConnection mConnection = new ServiceConnection() {
alision371b77e2013-04-23 14:51:26 -0400397
alision9f7a6ec2013-05-24 16:26:26 -0400398 @Override
399 public void onServiceConnected(ComponentName className, IBinder binder) {
400 service = ISipService.Stub.asInterface(binder);
alisione2a38e12013-04-25 14:20:20 -0400401
alision2cb99562013-05-30 17:02:20 -0400402 try {
alision58356b72013-06-03 17:13:36 -0400403
alision907bde72013-06-20 14:40:37 -0400404 fMenu = new MenuFragment();
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500405 fContent = new HomeFragment();
Alexandre Lision18e30542013-12-13 11:32:07 -0500406 getSupportFragmentManager().beginTransaction().replace(R.id.left_drawer, fMenu).commit();
Alexandre Lisiond5934b52014-01-07 17:17:37 -0500407 getSupportFragmentManager().beginTransaction().replace(R.id.main_frame, fContent, "Home").addToBackStack("Home").commit();
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400408
alision2cb99562013-05-30 17:02:20 -0400409 service.destroyNotification();
410 } catch (RemoteException e) {
411 Log.e(TAG, e.toString());
412 }
alision9f7a6ec2013-05-24 16:26:26 -0400413 mBound = true;
alision9f7a6ec2013-05-24 16:26:26 -0400414 Log.d(TAG, "Service connected service=" + service);
alision371b77e2013-04-23 14:51:26 -0400415
alision9f7a6ec2013-05-24 16:26:26 -0400416 }
alision5f899632013-04-22 17:26:56 -0400417
alision9f7a6ec2013-05-24 16:26:26 -0400418 @Override
419 public void onServiceDisconnected(ComponentName arg0) {
alision5f899632013-04-22 17:26:56 -0400420
alision9f7a6ec2013-05-24 16:26:26 -0400421 mBound = false;
422 Log.d(TAG, "Service disconnected service=" + service);
423 }
424 };
alision5f899632013-04-22 17:26:56 -0400425
alision9f7a6ec2013-05-24 16:26:26 -0400426 @Override
427 public boolean onOptionsItemSelected(MenuItem item) {
428 Log.i(TAG, "onOptionsItemSelected " + item.getItemId());
alision5f899632013-04-22 17:26:56 -0400429
alision9f7a6ec2013-05-24 16:26:26 -0400430 if (mDrawerToggle.onOptionsItemSelected(item)) {
431 return true;
432 }
alision5f899632013-04-22 17:26:56 -0400433
alision9f7a6ec2013-05-24 16:26:26 -0400434 return super.onOptionsItemSelected(item);
435 }
alisionf76de3b2013-04-16 15:35:22 -0400436
alision9f7a6ec2013-05-24 16:26:26 -0400437 @Override
438 public void onActivityResult(int requestCode, int resultCode, Intent data) {
439 super.onActivityResult(requestCode, resultCode, data);
alision84813a12013-05-27 17:40:39 -0400440
441 switch (requestCode) {
alision9f7a6ec2013-05-24 16:26:26 -0400442 case REQUEST_CODE_PREFERENCES:
Alexandre Lisione5b66022013-10-30 11:34:15 -0400443 if (fMenu != null)
Alexandre Lision933ef0a2013-10-15 17:28:40 -0400444 fMenu.updateAllAccounts();
alision9f7a6ec2013-05-24 16:26:26 -0400445 break;
446 case REQUEST_CODE_CALL:
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400447 if (resultCode == CallActivity.RESULT_FAILURE) {
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400448 Log.w(TAG, "Call Failed");
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400449 }
alision9f7a6ec2013-05-24 16:26:26 -0400450 break;
451 }
alisionf76de3b2013-04-16 15:35:22 -0400452
alision9f7a6ec2013-05-24 16:26:26 -0400453 }
alisionf76de3b2013-04-16 15:35:22 -0400454
alision9f7a6ec2013-05-24 16:26:26 -0400455 @Override
alision9f7a6ec2013-05-24 16:26:26 -0400456 public ISipService getService() {
457 return service;
458 }
alisionf76de3b2013-04-16 15:35:22 -0400459
alision84813a12013-05-27 17:40:39 -0400460 /**
461 * Interface implemented to handle incoming events
462 */
alision9f7a6ec2013-05-24 16:26:26 -0400463 @Override
alision84813a12013-05-27 17:40:39 -0400464 public void incomingCall(Intent call) {
alisionfde875f2013-05-28 17:01:54 -0400465 SipCall infos = call.getParcelableExtra("newcall");
alision84813a12013-05-27 17:40:39 -0400466
alision55c36cb2013-06-14 14:57:38 -0400467 launchCallActivity(infos);
alision84813a12013-05-27 17:40:39 -0400468
469 }
470
471 @Override
472 public void callStateChanged(Intent callState) {
473 Bundle b = callState.getBundleExtra("com.savoirfairelinux.sflphone.service.newstate");
474 String cID = b.getString("CallID");
475 String state = b.getString("State");
476 Log.i(TAG, "callStateChanged" + cID + " " + state);
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500477 // mSectionsPagerAdapter.updateHome();
alision84813a12013-05-27 17:40:39 -0400478
479 }
480
481 @Override
482 public void incomingText(Intent msg) {
483 Bundle b = msg.getBundleExtra("com.savoirfairelinux.sflphone.service.newtext");
484 b.getString("CallID");
485 String from = b.getString("From");
486 String mess = b.getString("Msg");
487 Toast.makeText(getApplicationContext(), "text from " + from + " : " + mess, Toast.LENGTH_LONG).show();
488 }
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400489
Alexandre Lisione1c96db2013-10-04 14:34:21 -0400490 @Override
491 public void onTextContact(final CallContact c) {
492 // TODO
493 }
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400494
Alexandre Lisionc59685a2013-10-04 16:36:36 -0400495 @Override
496 public void onEditContact(final CallContact c) {
497 Intent intent = new Intent(Intent.ACTION_VIEW);
498 Uri uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_URI, String.valueOf(c.getId()));
499 intent.setData(uri);
500 startActivity(intent);
501 }
alision84813a12013-05-27 17:40:39 -0400502
503 @Override
Alexandre Lisione1c96db2013-10-04 14:34:21 -0400504 public void onCallContact(final CallContact c) {
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400505
Alexandre Lisionf0b993d2013-09-12 13:25:10 -0400506 if (fMenu.getSelectedAccount() == null) {
Alexandre Lisionf0b993d2013-09-12 13:25:10 -0400507 createAccountDialog().show();
508 return;
509 }
alisionfde875f2013-05-28 17:01:54 -0400510
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400511 if (!fMenu.getSelectedAccount().isRegistered()) {
512 createNotRegisteredDialog().show();
513 return;
514 }
515
Alexandre Lisiond16bad92013-10-09 17:16:20 -0400516 getActionBar().show();
alision55c36cb2013-06-14 14:57:38 -0400517 Thread launcher = new Thread(new Runnable() {
alision907bde72013-06-20 14:40:37 -0400518
alision55c36cb2013-06-14 14:57:38 -0400519 final String[] CONTACTS_PHONES_PROJECTION = new String[] { Phone.NUMBER, Phone.TYPE };
520 final String[] CONTACTS_SIP_PROJECTION = new String[] { SipAddress.SIP_ADDRESS, SipAddress.TYPE };
alision907bde72013-06-20 14:40:37 -0400521
alision55c36cb2013-06-14 14:57:38 -0400522 @Override
523 public void run() {
524 SipCall.SipCallBuilder callBuilder = SipCall.SipCallBuilder.getInstance();
525 try {
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400526 callBuilder.startCallCreation().setAccount(fMenu.getSelectedAccount()).setCallType(SipCall.state.CALL_TYPE_OUTGOING);
alision907bde72013-06-20 14:40:37 -0400527 Cursor cPhones = getContentResolver().query(Phone.CONTENT_URI, CONTACTS_PHONES_PROJECTION, Phone.CONTACT_ID + " =" + c.getId(),
528 null, null);
alision55c36cb2013-06-14 14:57:38 -0400529
alision907bde72013-06-20 14:40:37 -0400530 while (cPhones.moveToNext()) {
531 c.addPhoneNumber(cPhones.getString(cPhones.getColumnIndex(Phone.NUMBER)), cPhones.getInt(cPhones.getColumnIndex(Phone.TYPE)));
532 }
533 cPhones.close();
534
535 Cursor cSip = getContentResolver().query(Phone.CONTENT_URI, CONTACTS_SIP_PROJECTION, Phone.CONTACT_ID + "=" + c.getId(), null,
536 null);
537
538 while (cSip.moveToNext()) {
539 c.addSipNumber(cSip.getString(cSip.getColumnIndex(SipAddress.SIP_ADDRESS)), cSip.getInt(cSip.getColumnIndex(SipAddress.TYPE)));
540 }
541 cSip.close();
542 callBuilder.setContact(c);
alision55c36cb2013-06-14 14:57:38 -0400543 launchCallActivity(callBuilder.build());
Alexandre Lision5ed2c972013-10-11 15:36:33 -0400544 } catch (InvalidObjectException e) {
545 e.printStackTrace();
alision55c36cb2013-06-14 14:57:38 -0400546 }
alision907bde72013-06-20 14:40:37 -0400547
alision55c36cb2013-06-14 14:57:38 -0400548 }
549 });
550 launcher.start();
Alexandre Lision450458a2013-11-22 11:33:12 -0500551 mContactDrawer.collapsePane();
alision84813a12013-05-27 17:40:39 -0400552
553 }
554
555 @Override
alision907bde72013-06-20 14:40:37 -0400556 public void onCallDialed(String to) {
alision84813a12013-05-27 17:40:39 -0400557
alisiondf1dac92013-06-27 17:35:53 -0400558 if (fMenu.getSelectedAccount() == null) {
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400559 createAccountDialog().show();
alisiondf1dac92013-06-27 17:35:53 -0400560 return;
561 }
562
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400563 if (fMenu.getSelectedAccount().isRegistered()) {
564 SipCall.SipCallBuilder callBuilder = SipCall.SipCallBuilder.getInstance();
565 callBuilder.startCallCreation().setAccount(fMenu.getSelectedAccount()).setCallType(SipCall.state.CALL_TYPE_OUTGOING);
566 callBuilder.setContact(CallContact.ContactBuilder.buildUnknownContact(to));
alision84813a12013-05-27 17:40:39 -0400567
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400568 try {
569 launchCallActivity(callBuilder.build());
570 } catch (Exception e) {
571 Log.e(TAG, e.toString());
572 }
573 } else {
Alexandre Lision5ed2c972013-10-11 15:36:33 -0400574 createNotRegisteredDialog().show();
alisionfde875f2013-05-28 17:01:54 -0400575 }
alision84813a12013-05-27 17:40:39 -0400576
alision9f7a6ec2013-05-24 16:26:26 -0400577 }
alision371b77e2013-04-23 14:51:26 -0400578
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400579 private AlertDialog createNotRegisteredDialog() {
580 final Activity ownerActivity = this;
581 AlertDialog.Builder builder = new AlertDialog.Builder(ownerActivity);
582
583 builder.setMessage(getResources().getString(R.string.cannot_pass_sipcall))
584 .setTitle(getResources().getString(R.string.cannot_pass_sipcall_title))
585 .setPositiveButton(getResources().getString(android.R.string.ok), new DialogInterface.OnClickListener() {
586 public void onClick(DialogInterface dialog, int whichButton) {
Alexandre Lision5ed2c972013-10-11 15:36:33 -0400587
Alexandre Lisiond588bff2013-10-08 12:43:01 -0400588 }
589 });
590
591 AlertDialog alertDialog = builder.create();
592 alertDialog.setOwnerActivity(ownerActivity);
593
594 return alertDialog;
595 }
596
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400597 private AlertDialog createAccountDialog() {
598 final Activity ownerActivity = this;
599 AlertDialog.Builder builder = new AlertDialog.Builder(ownerActivity);
600
601 builder.setMessage(getResources().getString(R.string.create_new_account_dialog))
602 .setTitle(getResources().getString(R.string.create_new_account_dialog_title))
603 .setPositiveButton(getResources().getString(android.R.string.ok), new DialogInterface.OnClickListener() {
604 public void onClick(DialogInterface dialog, int whichButton) {
605 Intent in = new Intent();
Alexandre Lision40954dc2013-10-09 15:24:03 -0400606 in.setClass(ownerActivity, AccountWizard.class);
Alexandre Lision4ab53972013-11-04 16:59:18 -0500607 ownerActivity.startActivityForResult(in, HomeActivity.REQUEST_CODE_PREFERENCES);
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400608 }
609 }).setNegativeButton(getResources().getString(android.R.string.cancel), new DialogInterface.OnClickListener() {
610 public void onClick(DialogInterface dialog, int whichButton) {
611 dialog.dismiss();
612 }
613 });
614
615 AlertDialog alertDialog = builder.create();
616 alertDialog.setOwnerActivity(ownerActivity);
617
618 return alertDialog;
619 }
620
alisiond45da712013-05-30 09:18:49 -0400621 @Override
622 public void onContactDragged() {
Alexandre Lision450458a2013-11-22 11:33:12 -0500623 mContactDrawer.collapsePane();
alisiond45da712013-05-30 09:18:49 -0400624 }
625
alision58356b72013-06-03 17:13:36 -0400626 @Override
Alexandre Lision0936ba62013-11-25 10:04:56 -0500627 public void toggleDrawer() {
Alexandre Lisionc985b362013-12-10 17:45:03 -0500628 if (mContactDrawer.isAnchored())
Alexandre Lision0936ba62013-11-25 10:04:56 -0500629 mContactDrawer.expandPane();
Alexandre Lisionc985b362013-12-10 17:45:03 -0500630 else if (!mContactDrawer.isExpanded())
631 mContactDrawer.expandPane(0.3f);
Alexandre Lisionc9b4e9e2013-11-27 10:27:28 -0500632 else
633 mContactDrawer.collapsePane();
alision58356b72013-06-03 17:13:36 -0400634 }
635
alision806e18e2013-06-21 15:30:17 -0400636 @Override
Alexandre Lisiona458ba22013-12-11 15:04:11 -0500637 public void toggleForSearchDrawer() {
638 if (mContactDrawer.isExpanded()) {
639 mContactDrawer.collapsePane();
640 } else
641 mContactDrawer.expandPane();
642 }
643
644 @Override
alision806e18e2013-06-21 15:30:17 -0400645 public void confCreated(Intent intent) {
646 // TODO Auto-generated method stub
alisiondf1dac92013-06-27 17:35:53 -0400647
alision806e18e2013-06-21 15:30:17 -0400648 }
649
650 @Override
651 public void confRemoved(Intent intent) {
652 // TODO Auto-generated method stub
alisiondf1dac92013-06-27 17:35:53 -0400653
alision806e18e2013-06-21 15:30:17 -0400654 }
655
656 @Override
657 public void confChanged(Intent intent) {
658 // TODO Auto-generated method stub
alisiondf1dac92013-06-27 17:35:53 -0400659
660 }
661
662 @Override
663 public void recordingChanged(Intent intent) {
664 // TODO Auto-generated method stub
665
666 }
667
668 @Override
Alexandre Lision1a9e3b12013-09-16 11:06:07 -0400669 public void selectedCall(Conference c) {
alisiondf1dac92013-06-27 17:35:53 -0400670 Intent intent = new Intent().setClass(this, CallActivity.class);
671 intent.putExtra("resuming", true);
Alexandre Lision1a9e3b12013-09-16 11:06:07 -0400672 intent.putExtra("conference", c);
alisiondf1dac92013-06-27 17:35:53 -0400673 startActivityForResult(intent, REQUEST_CODE_CALL);
alision806e18e2013-06-21 15:30:17 -0400674 }
Alexandre Lision8b9d8e82013-10-04 09:21:27 -0400675
Alexandre Lision0936ba62013-11-25 10:04:56 -0500676 @Override
677 public void setDragView(RelativeLayout relativeLayout) {
678 mContactDrawer.setDragView(relativeLayout);
679 }
680
Alexandre Lision269e6042013-12-11 16:15:13 -0500681 @Override
682 public void onSectionSelected(int pos) {
Alexandre Lision269e6042013-12-11 16:15:13 -0500683 switch (pos) {
684 case 0:
Alexandre Lision18e30542013-12-13 11:32:07 -0500685
686 if (fContent instanceof HomeFragment)
687 break;
Alexandre Lisionfc9b4e72013-12-13 14:55:25 -0500688
Alexandre Lisiond5934b52014-01-07 17:17:37 -0500689 if (getSupportFragmentManager().getBackStackEntryCount() == 1)
Alexandre Lision658999c2013-12-13 14:42:45 -0500690 break;
Alexandre Lisionfc9b4e72013-12-13 14:55:25 -0500691
Alexandre Lisiond5934b52014-01-07 17:17:37 -0500692 popCustomBackStack();
Alexandre Lision18e30542013-12-13 11:32:07 -0500693
Alexandre Lision269e6042013-12-11 16:15:13 -0500694 break;
695 case 1:
Alexandre Lision18e30542013-12-13 11:32:07 -0500696 if (fContent instanceof AccountsManagementFragment)
697 break;
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500698 fContent = new AccountsManagementFragment();
Alexandre Lision658999c2013-12-13 14:42:45 -0500699 getSupportFragmentManager().beginTransaction().replace(R.id.main_frame, fContent, "Accounts").addToBackStack("Accounts").commit();
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500700 break;
701 case 2:
Alexandre Lision18e30542013-12-13 11:32:07 -0500702 if (fContent instanceof AboutFragment)
703 break;
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500704 fContent = new AboutFragment();
Alexandre Lision658999c2013-12-13 14:42:45 -0500705 getSupportFragmentManager().beginTransaction().replace(R.id.main_frame, fContent, "About").addToBackStack("About").commit();
Alexandre Lision269e6042013-12-11 16:15:13 -0500706 break;
707 }
Alexandre Lisionf02190d2013-12-12 17:26:12 -0500708
709 mNavigationDrawer.closeDrawers();
Alexandre Lision269e6042013-12-11 16:15:13 -0500710 }
711
alisionf76de3b2013-04-16 15:35:22 -0400712}