1 package ro
.ieval
.fonbot
;
3 import static ro
.ieval
.fonbot
.R
.string
.*;
4 import static ro
.ieval
.fonbot
.Utils
.toNonNull
;
7 import java
.io
.FileInputStream
;
8 import java
.io
.FileNotFoundException
;
9 import java
.io
.IOException
;
10 import java
.lang
.reflect
.InvocationTargetException
;
11 import java
.lang
.reflect
.Method
;
12 import java
.net
.InetSocketAddress
;
13 import java
.net
.Socket
;
14 import java
.net
.UnknownHostException
;
15 import java
.nio
.channels
.FileChannel
;
16 import java
.nio
.channels
.SocketChannel
;
17 import java
.util
.ArrayList
;
18 import java
.util
.Date
;
20 import org
.eclipse
.jdt
.annotation
.Nullable
;
22 import ro
.ieval
.fonbot
.Utils
.Command
;
23 import ro
.ieval
.fonbot
.Utils
.MessageType
;
24 import ro
.ieval
.fonbot
.Utils
.OngoingEvent
;
25 import ro
.ieval
.fonbot
.Utils
.RingerMode
;
26 import ro
.ieval
.fonbot
.Utils
.WipeType
;
27 import android
.annotation
.SuppressLint
;
28 import android
.app
.AlarmManager
;
29 import android
.app
.NotificationManager
;
30 import android
.app
.PendingIntent
;
31 import android
.app
.admin
.DevicePolicyManager
;
32 import android
.bluetooth
.BluetoothAdapter
;
33 import android
.content
.ActivityNotFoundException
;
34 import android
.content
.Context
;
35 import android
.content
.Intent
;
36 import android
.content
.IntentFilter
;
37 import android
.database
.Cursor
;
38 import android
.graphics
.ImageFormat
;
39 import android
.hardware
.Camera
;
40 import android
.hardware
.Camera
.PictureCallback
;
41 import android
.location
.Location
;
42 import android
.location
.LocationListener
;
43 import android
.location
.LocationManager
;
44 import android
.location
.LocationProvider
;
45 import android
.media
.AudioManager
;
46 import android
.media
.Ringtone
;
47 import android
.media
.RingtoneManager
;
48 import android
.net
.ConnectivityManager
;
49 import android
.net
.Uri
;
50 import android
.net
.wifi
.WifiManager
;
51 import android
.os
.AsyncTask
;
52 import android
.os
.BatteryManager
;
53 import android
.os
.Bundle
;
54 import android
.os
.Handler
;
55 import android
.os
.PowerManager
;
56 import android
.os
.Vibrator
;
57 import android
.preference
.PreferenceManager
;
58 import android
.provider
.BaseColumns
;
59 import android
.provider
.CallLog
.Calls
;
60 import android
.provider
.ContactsContract
.CommonDataKinds
;
61 import android
.provider
.ContactsContract
.CommonDataKinds
.BaseTypes
;
62 import android
.provider
.ContactsContract
.CommonDataKinds
.Phone
;
63 import android
.provider
.ContactsContract
.Contacts
;
64 import android
.provider
.ContactsContract
.Data
;
65 import android
.provider
.Settings
.Secure
;
66 import android
.speech
.tts
.TextToSpeech
;
67 import android
.speech
.tts
.TextToSpeech
.OnInitListener
;
68 import android
.support
.v4
.app
.NotificationCompat
;
69 import android
.telephony
.SmsManager
;
70 import android
.telephony
.TelephonyManager
;
71 import android
.util
.Log
;
72 import android
.view
.SurfaceView
;
73 import android
.widget
.Toast
;
75 import com
.android
.internal
.telephony
.ITelephony
;
78 * Copyright © 2013 Marius Gavrilescu
80 * This file is part of FonBot.
82 * FonBot is free software: you can redistribute it and/or modify
83 * it under the terms of the GNU General Public License as published by
84 * the Free Software Foundation, either version 3 of the License, or
85 * (at your option) any later version.
87 * FonBot is distributed in the hope that it will be useful,
88 * but WITHOUT ANY WARRANTY; without even the implied warranty of
89 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
90 * GNU General Public License for more details.
92 * You should have received a copy of the GNU General Public License
93 * along with FonBot. If not, see <http://www.gnu.org/licenses/>.
97 * Implementation of all FonBot commands. The methods of this class do not do argument checking.
99 * @author Marius Gavrilescu <marius@ieval.ro>
103 * LocationListener that sends notifications to the user.
105 * @author Marius Gavrilescu <marius@ieval.ro>
107 private static final class FonBotLocationListener
implements LocationListener
{
108 /** Context instance */
109 private final Context context
;
110 /** Destination address for notifications */
111 private final Address replyTo
;
114 * Construct a FonBotLocationListener.
116 * @param context Context instance
117 * @param replyTo the reply address
119 FonBotLocationListener(final Context context
, final Address replyTo
) {
120 this.context
=context
;
121 this.replyTo
=replyTo
;
125 public void onLocationChanged(@Nullable final Location loc
) {
128 final StringBuilder sb
=new StringBuilder(toNonNull(context
.getString(location
)));
130 sb
.append(toNonNull(context
.getString(latitude
)));
132 sb
.append(loc
.getLatitude());
134 sb
.append(toNonNull(context
.getString(longitude
)));
136 sb
.append(loc
.getLongitude());
138 if(loc
.hasAccuracy()){
140 sb
.append(toNonNull(context
.getString(accuracy
)));
142 sb
.append(loc
.getAccuracy());
145 if(loc
.hasAltitude()){
147 sb
.append(toNonNull(context
.getString(altitude
)));
149 sb
.append(loc
.getAltitude());
152 if(loc
.hasBearing()){
154 sb
.append(toNonNull(context
.getString(bearing
)));
156 sb
.append(loc
.getBearing());
161 sb
.append(toNonNull(context
.getString(speed
)));
163 sb
.append(loc
.getSpeed());
166 final Date locationDate
=new Date(loc
.getTime());
168 sb
.append(toNonNull(context
.getString(at
)));
170 sb
.append(locationDate
.toString());
171 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), toNonNull(sb
.toString()));
175 public void onProviderDisabled(@Nullable final String provider
) {
176 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), location_provider_disabled
, provider
);
180 public void onProviderEnabled(@Nullable final String provider
) {
181 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), location_provider_enabled
, provider
);
185 public void onStatusChanged(@Nullable final String provider
, final int status
, @Nullable final Bundle extras
) {
188 case LocationProvider
.AVAILABLE
:
189 state
=location_provider_available
;
191 case LocationProvider
.TEMPORARILY_UNAVAILABLE
:
192 state
=location_provider_temporary_unavailable
;
194 case LocationProvider
.OUT_OF_SERVICE
:
195 state
=location_provider_out_of_service
;
198 state
=location_provider_unknown_state
;
200 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), state
, provider
);
204 * Currently active FonBotLocationListener
206 private static FonBotLocationListener locationListener
= null;
209 * AsyncTask that sends a byte[] to a server
211 * @author Marius Gavrilescu <marius@ieval.ro>
214 private static class SendDataAsyncTask
extends AsyncTask
<Void
, Void
, Void
>{
216 * Context instance used by this class
218 private final Context context
;
222 private final String hostname
;
226 private final int port
;
230 private final byte[] data
;
232 * Address for sending back errors and success messages
234 private final Address replyTo
;
237 * Constructs a SendDataAsyncTasks from its parameters
239 * @param context the context
240 * @param replyTo the reply Address
241 * @param hostname the server hostname
242 * @param port the server port
243 * @param data the data to send
245 public SendDataAsyncTask(final Context context
,final Address replyTo
, final String hostname
, final int port
, final byte[] data
) {//NOPMD array is immutable
247 this.context
=context
;
248 this.hostname
=hostname
;
251 this.replyTo
=replyTo
;
255 protected @Nullable Void
doInBackground(@Nullable final Void
... params
) {
258 sock
= new Socket(hostname
, port
);
260 sock
.getOutputStream().write(data
);
261 } catch (IOException e
) {
262 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), error_writing_to_socket
, e
.getMessage());
268 } catch (IOException e
) {
269 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), cannot_close_socket
, e
.getMessage());
272 } catch (UnknownHostException e
) {
273 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), unknown_host
, hostname
);
275 } catch (IOException e
) {
276 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), cannot_connect_to_host_on_port
, hostname
, Integer
.valueOf(port
));
279 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), photo_sent
);
285 * PictureCallback that sends the picture to a server.
287 * @author Marius Gavrilescu <marius@ieval.ro>
289 private static final class FonBotPictureCallback
implements PictureCallback
{
290 /** Server hostname */
291 private final String hostname
;
293 private final int port
;
294 /** Context instance */
295 private final Context context
;
297 private final Address replyTo
;
300 * Construct a FonBotPictureCallback.
302 * @param context Context instance
303 * @param replyTo reply Address
304 * @param hostname server hostname
305 * @param port server port
307 FonBotPictureCallback(final Context context
, final Address replyTo
, final String hostname
, final int port
) {
308 this.hostname
=hostname
;
310 this.context
=context
;
311 this.replyTo
=replyTo
;
315 @SuppressWarnings("hiding")
316 public void onPictureTaken(final @Nullable byte[] data
, final @Nullable Camera camera
) {
317 if(camera
==null || data
==null)
319 camera
.stopPreview();
321 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), sending_photo
);
322 new SendDataAsyncTask(toNonNull(context
), toNonNull(replyTo
), toNonNull(hostname
), port
, data
).execute();
327 * Runnable that takes a screen capture and stores it in a file.
329 private static final class ScreencapRunnable
implements Runnable
{
330 private final Context context
;
331 private final Address replyTo
;
332 private final String filename
;
334 ScreencapRunnable(final Context context
, final Address replyTo
, final String filename
){
335 this.context
=context
;
336 this.replyTo
=replyTo
;
337 this.filename
=filename
;
344 exitCode
=Runtime
.getRuntime().exec(new String
[]{
347 "screencap -p \"" + filename
+ "\""
349 } catch (final Exception e
){
351 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), screencap_failed
);
355 if(exitCode
== 0 && new File(filename
).exists())
356 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), screencap_successful
);
358 Utils
.sendMessage(toNonNull(context
), toNonNull(replyTo
), screencap_failed
);
363 * Get help for a particular command
365 * @param context Context instance
366 * @param replyTo reply Address
367 * @param command command to get help for
369 public static void help(final Context context
, final Address replyTo
, final Command command
){//NOPMD method is a big switch statement. Nothing confusing.
372 Utils
.sendMessage(context
, replyTo
, answer_help
);
375 Utils
.sendMessage(context
, replyTo
, batt_help
);
378 Utils
.sendMessage(context
, replyTo
, bluetooth_help
);
381 Utils
.sendMessage(context
, replyTo
, calllog_help
);
384 Utils
.sendMessage(context
, replyTo
, contacts_help
);
387 Utils
.sendMessage(context
, replyTo
, data_help
);
389 case DELNOTIFICATION
:
390 Utils
.sendMessage(context
, replyTo
, delnotification_help
, Utils
.join(", ", toNonNull(MessageType
.values())));
393 Utils
.sendMessage(context
, replyTo
, dial_help
);
396 Utils
.sendMessage(context
, replyTo
, dialog_help
);
399 Utils
.sendMessage(context
, replyTo
, disable_help
, Utils
.join(", ", toNonNull(Command
.values())));
402 Utils
.sendMessage(context
, replyTo
, echo_help
);
405 Utils
.sendMessage(context
, replyTo
, enable_help
, Utils
.join(", ", toNonNull(Command
.values())));
408 Utils
.sendMessage(context
, replyTo
, flash_help
);
411 Utils
.sendMessage(context
, replyTo
, glocation_help
);
414 Utils
.sendMessage(context
, replyTo
, gps_help
);
417 Utils
.sendMessage(context
, replyTo
, hangup_help
);
420 Utils
.sendMessage(context
, replyTo
, help_help
, Utils
.join(", ",toNonNull(Command
.values())));
423 Utils
.sendMessage(context
, replyTo
, launch_help
);
426 Utils
.sendMessage(context
, replyTo
, location_help
, Utils
.join(", ",toNonNull(Utils
.LocationProvider
.values())));
429 Utils
.sendMessage(context
, replyTo
, lock_help
);
432 Utils
.sendMessage(context
, replyTo
, ls_help
);
435 Utils
.sendMessage(context
, replyTo
, ncfile_help
);
438 Utils
.sendMessage(context
, replyTo
, next_help
);
441 Utils
.sendMessage(context
, replyTo
, nolocation_help
);
444 Utils
.sendMessage(context
, replyTo
, pause_help
);
447 Utils
.sendMessage(context
, replyTo
, photo_help
);
450 Utils
.sendMessage(context
, replyTo
, play_help
);
453 Utils
.sendMessage(context
, replyTo
, poll_help
);
456 Utils
.sendMessage(context
, replyTo
, prev_help
);
459 Utils
.sendMessage(context
, replyTo
, ring_help
);
462 Utils
.sendMessage(context
, replyTo
, ringer_help
, Utils
.join(", ", toNonNull(RingerMode
.values())));
465 Utils
.sendMessage(context
, replyTo
, rm_help
);
467 case SETNOTIFICATION
:
468 Utils
.sendMessage(context
, replyTo
, setnotification_help
, Utils
.join(", ", toNonNull(MessageType
.values())));
471 Utils
.sendMessage(context
, replyTo
, setpassword_help
);
474 Utils
.sendMessage(context
, replyTo
, sms_help
);
477 Utils
.sendMessage(context
, replyTo
, smslog_help
);
480 Utils
.sendMessage(context
, replyTo
, speak_help
);
483 Utils
.sendMessage(context
, replyTo
, toast_help
);
486 Utils
.sendMessage(context
, replyTo
, vibrate_help
);
489 Utils
.sendMessage(context
, replyTo
, view_help
);
492 Utils
.sendMessage(context
, replyTo
, wifi_help
);
495 Utils
.sendMessage(context
, replyTo
, wipe_help
, Utils
.WIPE_CONFIRM_STRING
);
498 Utils
.sendMessage(context
, replyTo
, reboot_help
);
501 Utils
.sendMessage(context
, replyTo
, notify_help
);
504 Utils
.sendMessage(context
, replyTo
, screencap_help
);
507 Utils
.sendMessage(context
, replyTo
, torch_help
);
515 * @see #startCamera(Context, Address)
518 private static Camera camera
;
520 * Ringtone used by the {@link Utils.Command#RING RING} command.
522 * @see #setupRingtone(Context)
524 private static Ringtone ringtone
;
526 * Saved ringer volume.
528 * @see #startAlarm(Context, Address)
529 * @see #stopAlarm(Context, Address)
531 private static int savedRingVolume
;
535 * @see #startAlarm(Context, Address)
536 * @see #stopAlarm(Context, Address)
538 private static int savedRingerMode
;
540 /** Private constructor */
546 * Convert a phone number type to a string
548 * @param context Context instance
549 * @param type phone number type
550 * @param label name of a custom phone type
551 * @return the phone number type
553 private static @Nullable String
phoneNumberType(final Context context
, final int type
, final @Nullable String label
) {
555 case BaseTypes
.TYPE_CUSTOM
:
557 case Phone
.TYPE_ASSISTANT
:
558 return context
.getString(phone_numer_type_assistant
);
559 case Phone
.TYPE_CALLBACK
:
560 return context
.getString(phone_number_type_callback
);
562 return context
.getString(phone_number_type_car
);
563 case Phone
.TYPE_COMPANY_MAIN
:
564 return context
.getString(phone_number_type_company_main
);
565 case Phone
.TYPE_FAX_HOME
:
566 return context
.getString(phone_number_type_home_fax
);
567 case Phone
.TYPE_FAX_WORK
:
568 return context
.getString(phone_number_type_work_fax
);
569 case Phone
.TYPE_HOME
:
570 return context
.getString(phone_number_type_home
);
571 case Phone
.TYPE_ISDN
:
572 return context
.getString(phone_number_type_isdn
);
573 case Phone
.TYPE_MAIN
:
574 return context
.getString(phone_number_type_main
);
576 return context
.getString(phone_number_type_mms
);
577 case Phone
.TYPE_MOBILE
:
578 return context
.getString(phone_number_type_mobile
);
579 case Phone
.TYPE_OTHER
:
580 return context
.getString(phone_number_type_other
);
581 case Phone
.TYPE_OTHER_FAX
:
582 return context
.getString(phone_number_type_other_fax
);
583 case Phone
.TYPE_PAGER
:
584 return context
.getString(phone_number_type_pager
);
585 case Phone
.TYPE_RADIO
:
586 return context
.getString(phone_number_type_radio
);
587 case Phone
.TYPE_TELEX
:
588 return context
.getString(phone_number_type_telex
);
589 case Phone
.TYPE_TTY_TDD
:
590 return context
.getString(phone_number_type_textphone
);
591 case Phone
.TYPE_WORK
:
592 return context
.getString(phone_number_type_work
);
593 case Phone
.TYPE_WORK_MOBILE
:
594 return context
.getString(phone_number_type_work_mobile
);
595 case Phone
.TYPE_WORK_PAGER
:
596 return context
.getString(phone_number_type_work_pager
);
599 return context
.getString(phone_number_type_unknown
, Integer
.valueOf(type
));
603 * Setup the ringtone used by the {@link Utils.Command#RING RING} command
605 * @param context Context
607 private static void setupRingtone(final Context context
){
608 if(ringtone
==null){//NOPMD not supposed to be thread-safe
609 final Uri alert
=RingtoneManager
.getDefaultUri(RingtoneManager
.TYPE_RINGTONE
);
610 ringtone
=RingtoneManager
.getRingtone(context
, alert
);
615 * Make the phone start ringing. Turns up the volume and sets the ringer mode to NORMAL
617 * @param context Context instance
618 * @param replyTo reply Address
620 private static void startAlarm(final Context context
, final Address replyTo
){
621 Utils
.registerOngoing(context
, toNonNull(OngoingEvent
.RING
));
622 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
623 savedRingerMode
=man
.getRingerMode();
624 man
.setRingerMode(AudioManager
.RINGER_MODE_NORMAL
);
625 savedRingVolume
=man
.getStreamVolume(AudioManager
.STREAM_RING
);
626 man
.setStreamVolume(AudioManager
.STREAM_RING
, man
.getStreamMaxVolume(AudioManager
.STREAM_RING
), 0);
627 Utils
.sendMessage(context
, replyTo
, ringing
);
632 * Get a camera instance.
634 * @param context Context instance
635 * @param replyTo reply Address
637 private static void startCamera(final Context context
, final Address replyTo
){
641 camera
=Camera
.open();
642 } catch (Exception e
){
643 Utils
.sendMessage(context
, replyTo
, cannot_grab_camera
);
648 * Make the phone stop ringing. Restores the volume and ringer mode.
650 * @param context Context instance
651 * @param replyTo reply Address
653 private static void stopAlarm(final Context context
, final Address replyTo
){
654 Utils
.unregisterOngoing(context
, toNonNull(OngoingEvent
.RING
));
655 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
656 Utils
.sendMessage(context
, replyTo
, no_longer_ringing
);
658 man
.setStreamVolume(AudioManager
.STREAM_RING
, savedRingVolume
, 0);
659 man
.setRingerMode(savedRingerMode
);
663 * Release the previously grabbed camera instance
665 * @see #startCamera(Context, Address)
667 private static void stopCamera(){
675 * Send battery status information to an Address
677 * @param context Context instance
678 * @param replyTo destination Address
680 * @see #describeBatteryLevel(Context, Address, MessageType)
682 public static void batt(final Context context
, final Address replyTo
){
683 describeBatteryLevel(context
, replyTo
, null);
687 * Show the bluetooth radio status.
689 * @param context Context instance
690 * @param replyTo destination Address
692 public static void bluetooth(final Context context
, final Address replyTo
) {
693 final BluetoothAdapter adapter
=BluetoothAdapter
.getDefaultAdapter();
695 Utils
.sendMessage(context
, replyTo
, no_bluetooth_adapter
);
699 if(adapter
.isEnabled())
700 Utils
.sendMessage(context
, replyTo
, bluetooth_on
);
702 Utils
.sendMessage(context
, replyTo
, bluetooth_off
);
706 * Set the bluetooth radio status.
708 * @param context Context instance
709 * @param replyTo destination Address
710 * @param on the requested radio status
712 public static void bluetooth(final Context context
, final Address replyTo
, final boolean on
){
713 final BluetoothAdapter adapter
=BluetoothAdapter
.getDefaultAdapter();
715 Utils
.sendMessage(context
, replyTo
, no_bluetooth_adapter
);
721 Utils
.sendMessage(context
, replyTo
, enabling_bluetooth
);
725 Utils
.sendMessage(context
, replyTo
, disabling_bluetooth
);
730 * Cancel an ongoing event.
732 * @param context Context instance
733 * @param event the event to cancel
735 public static void cancelOngoing(final Context context
, final OngoingEvent event
){
738 nolocation(context
, toNonNull(Address
.BLACKHOLE
));
741 ring(context
, toNonNull(Address
.BLACKHOLE
), false);
747 * Send the last calls to an Address.
749 * @param context Context instance
750 * @param replyTo destination Address
751 * @param numCalls how many calls to send
753 public static void calllog(final Context context
, final Address replyTo
, final int numCalls
) {
754 final String
[] fields
= {
755 Calls
.TYPE
, Calls
.NUMBER
, Calls
.CACHED_NAME
, Calls
.DURATION
, Calls
.DATE
758 final Cursor cursor
= context
.getContentResolver().query(
766 if (cursor
.moveToFirst()) {
768 final StringBuilder sb
=new StringBuilder(50);//NOPMD different strings
769 final int type
=cursor
.getInt(0);
770 final String from
=cursor
.getString(1);
773 case Calls
.INCOMING_TYPE
:
774 sb
.append(context
.getString(incoming_call_from
, from
));
776 case Calls
.MISSED_TYPE
:
777 sb
.append(context
.getString(missed_call_from
, from
));
779 case Calls
.OUTGOING_TYPE
:
780 sb
.append(context
.getString(outgoing_call_to
, from
));
784 if (cursor
.getString(2) != null)
785 sb
.append('(').append(cursor
.getString(2)).append(") ");
787 sb
.append(context
.getString(duration_seconds_starting_at
,
788 Long
.valueOf(cursor
.getLong(3)),
789 new Date(cursor
.getLong(4))));
791 Utils
.sendMessage(context
, replyTo
, toNonNull(sb
.toString()));
792 } while (cursor
.moveToNext() && cursor
.getPosition() < numCalls
);
799 * Search for contacts by name/nickname and send matching entries to an Address.
801 * @param context Context instance
802 * @param replyTo destination Address
803 * @param name name/nickname part to search for
805 @SuppressLint("StringFormatMatches")
806 public static void contacts(final Context context
, final Address replyTo
, final String name
){
807 final Cursor cursor
=context
.getContentResolver().query(Uri
.withAppendedPath(
808 Contacts
.CONTENT_FILTER_URI
, name
),
809 new String
[]{Contacts
.DISPLAY_NAME
, BaseColumns
._ID
, Contacts
.LOOKUP_KEY
},
810 null, null, Contacts
.DISPLAY_NAME
);
812 if(cursor
.getCount()==0)
813 Utils
.sendMessage(context
, replyTo
, no_matching_contacts_found
);
815 while(cursor
.moveToNext()){
816 final String
[] fields
= {
817 CommonDataKinds
.Phone
.NUMBER
,
818 CommonDataKinds
.Phone
.TYPE
,
819 CommonDataKinds
.Phone
.LABEL
,
822 final Cursor inCursor
=context
.getContentResolver().query(Data
.CONTENT_URI
,
824 Data
.CONTACT_ID
+" = ? AND "+Data
.MIMETYPE
+ " = ?",
825 new String
[]{Long
.toString(cursor
.getLong(1)), CommonDataKinds
.Phone
.CONTENT_ITEM_TYPE
},
826 CommonDataKinds
.Phone
.LABEL
);
828 while(inCursor
.moveToNext())
829 Utils
.sendMessage(context
, replyTo
, toNonNull(context
.getString(contact_info
,
831 inCursor
.getString(0),
832 phoneNumberType(context
, inCursor
.getInt(1), inCursor
.getString(2)))));
841 * Send battery status information to an Address or as a notification
843 * @param context Context instance
844 * @param replyTo Address to send the information to, if sending to a direct address. Null otherwise.
845 * @param type Notification type, if sending as a notification. Null otherwise.
847 public static void describeBatteryLevel(final Context context
, final @Nullable Address replyTo
, final @Nullable MessageType type
) {
848 if(replyTo
==null&&type
==null)
850 final Intent intent
=context
.registerReceiver(null, new IntentFilter(Intent
.ACTION_BATTERY_CHANGED
));
853 final double level
=intent
.getIntExtra(BatteryManager
.EXTRA_LEVEL
, 0);
854 final int scale
=intent
.getIntExtra(BatteryManager
.EXTRA_SCALE
, 100);
855 final int plugged
=intent
.getIntExtra(BatteryManager
.EXTRA_PLUGGED
, 0);
856 final int status
=intent
.getIntExtra(BatteryManager
.EXTRA_STATUS
, BatteryManager
.BATTERY_STATUS_UNKNOWN
);
857 final int temp
=intent
.getIntExtra(BatteryManager
.EXTRA_TEMPERATURE
, 0);
858 final int volt
=intent
.getIntExtra(BatteryManager
.EXTRA_VOLTAGE
, 0);
860 final StringBuilder sb
=new StringBuilder(100);
861 sb
.append(context
.getString(battery_level
, Double
.valueOf(level
*100/scale
)));
865 sb
.append(context
.getString(not_plugged_in
));
867 case BatteryManager
.BATTERY_PLUGGED_AC
:
868 sb
.append(context
.getString(plugged_in_ac
));
870 case BatteryManager
.BATTERY_PLUGGED_USB
:
871 sb
.append(context
.getString(plugged_in_usb
));
873 case BatteryManager
.BATTERY_PLUGGED_WIRELESS
:
874 sb
.append(context
.getString(plugged_in_wireless
));
879 case BatteryManager
.BATTERY_STATUS_CHARGING
:
880 sb
.append(context
.getString(status_charging
));
882 case BatteryManager
.BATTERY_STATUS_DISCHARGING
:
883 sb
.append(context
.getString(status_discharging
));
885 case BatteryManager
.BATTERY_STATUS_FULL
:
886 sb
.append(context
.getString(status_full
));
888 case BatteryManager
.BATTERY_STATUS_NOT_CHARGING
:
889 sb
.append(context
.getString(status_not_charging
));
891 case BatteryManager
.BATTERY_STATUS_UNKNOWN
:
892 sb
.append(context
.getString(status_unknown
));
896 sb
.append(context
.getString(temperature
, Integer
.valueOf(temp
)));
898 sb
.append(context
.getString(voltage
, Integer
.valueOf(volt
)));
900 Utils
.sendMessage(context
, toNonNull(replyTo
), toNonNull(sb
.toString()));
902 Utils
.sendMessage(context
, type
, toNonNull(sb
.toString()));
906 * Dial a phone number.
908 * @param context Context instance
909 * @param replyTo reply Address
910 * @param nr phone number to dial
912 public static void dial(final Context context
, final Address replyTo
, final String nr
){
913 final Intent intent
=new Intent(Intent
.ACTION_CALL
,Uri
.parse("tel:"+nr
));
914 intent
.addFlags(Intent
.FLAG_ACTIVITY_NEW_TASK
);
915 final String name
=Utils
.callerId(context
, nr
);
917 Utils
.sendMessage(context
, replyTo
, dialing
, nr
);
919 Utils
.sendMessage(context
, replyTo
, dialing
, nr
+" ("+name
+")");
920 context
.startActivity(intent
);
924 * Show a dialog with a message and a list of buttons.
926 * @param context Context instance
927 * @param replyTo reply Address
928 * @param message dialog message
929 * @param buttons dialog buttons
931 public static void dialog(final Context context
, final Address replyTo
, final String message
, final String
[] buttons
){
932 final Intent intent
=new Intent(context
, DialogActivity
.class);
933 intent
.putExtra(DialogActivity
.EXTRA_MESSAGE
, message
);
934 intent
.putExtra(DialogActivity
.EXTRA_BUTTONS
, buttons
);
935 intent
.putExtra(DialogActivity
.EXTRA_REPLYTO
, replyTo
.toString());
937 Intent
.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
|
938 Intent
.FLAG_ACTIVITY_NEW_TASK
|
939 Intent
.FLAG_ACTIVITY_NO_USER_ACTION
|
940 Intent
.FLAG_FROM_BACKGROUND
);
941 Utils
.sendMessage(context
, toNonNull(replyTo
), showing_dialog
);
942 context
.startActivity(intent
);
946 * Turns the flashlight on or off.
948 * @param context Context instance
949 * @param replyTo reply Address
950 * @param on requested flashlight state
952 public static void flash(final Context context
, final Address replyTo
, final boolean on
){
953 startCamera(context
, replyTo
);
956 final Camera
.Parameters parms
=camera
.getParameters();
958 parms
.setFlashMode(Camera
.Parameters
.FLASH_MODE_TORCH
);
959 camera
.setParameters(parms
);
961 parms
.setFlashMode(Camera
.Parameters
.FLASH_MODE_AUTO
);
962 camera
.setParameters(parms
);
968 * Start sending location updates to an Address.
970 * @param context Context instance
971 * @param replyTo destination Address
972 * @param provider LocationProvider
973 * @param minTime minimum time between two consecutive updates (in ms)
974 * @param minDistance minimum distance between two consecutive updates (in meters)
976 * @see LocationManager#requestLocationUpdates(String, long, float, LocationListener)
978 public static void location(final Context context
, final Address replyTo
, final String provider
,final long minTime
,final float minDistance
){
979 final LocationManager man
=(LocationManager
) context
.getApplicationContext().getSystemService(Context
.LOCATION_SERVICE
);
980 if(locationListener
!=null)
981 nolocation(context
, toNonNull(Address
.BLACKHOLE
));
982 Utils
.registerOngoing(context
, toNonNull(OngoingEvent
.LOCATION
));
983 locationListener
=new FonBotLocationListener(context
, replyTo
);
984 man
.removeUpdates(locationListener
);
985 final Location lastKnownLocation
=man
.getLastKnownLocation(provider
);
986 if(lastKnownLocation
!=null){
987 Utils
.sendMessage(context
, replyTo
, last_known_location
);
988 locationListener
.onLocationChanged(lastKnownLocation
);
990 Utils
.sendMessage(context
, replyTo
, listening_for_location_updates
);
991 man
.requestLocationUpdates(provider
, minTime
, minDistance
, locationListener
);
997 * @param context Context instance
998 * @param replyTo reply Address
1000 public static void lock(final Context context
, final Address replyTo
) {
1001 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
1003 Utils
.sendMessage(context
, replyTo
, device_locked
);
1007 * Send a command to a running instance of the music player
1009 * @param context Context instance
1010 * @param replyTo reply Address
1011 * @param command command to send
1013 public static void musicPlayerCommand(final Context context
, final Address replyTo
, final String command
) {
1014 final Intent intent
=new Intent("com.android.music.musicservicecommand");
1015 intent
.putExtra("command", command
);
1016 context
.sendBroadcast(intent
);
1017 Utils
.sendMessage(context
, replyTo
, command_sent
);
1021 * Send a file to a server.
1023 * @param context Context instance
1024 * @param replyTo reply Address
1025 * @param filename file to send
1026 * @param hostname server hostname
1027 * @param port server port
1029 public static void ncfile(final Context context
, final Address replyTo
, final String filename
,final String hostname
,final int port
){
1030 new AsyncTask
<Void
, Void
, Void
>() {
1032 protected @Nullable Void
doInBackground(@Nullable final Void
... params
) {
1033 final FileChannel in
;
1035 in
=new FileInputStream(filename
).getChannel();
1036 } catch (final FileNotFoundException e
){
1037 Utils
.sendMessage(context
, replyTo
, file_not_found
, filename
);
1040 final SocketChannel sock
;
1042 sock
= SocketChannel
.open(new InetSocketAddress(hostname
, port
));
1043 } catch (final IOException e
){
1044 Utils
.sendMessage(context
, replyTo
, toNonNull(context
.getString(
1045 cannot_connect_to_host_on_port
, hostname
, Integer
.valueOf(port
))));
1048 } catch (IOException ex
) {
1055 in
.transferTo(0, in
.size(), sock
);
1056 } catch (final IOException e
){
1057 Utils
.sendMessage(context
, replyTo
, toNonNull(context
.getString(
1058 io_error
, e
.getMessage())));
1062 } catch (IOException e
){
1067 } catch(IOException e
){
1075 protected void onPostExecute(@Nullable final Void result
) {
1076 Utils
.sendMessage(context
, replyTo
, file_sent
);
1082 * Stop sending location updates.
1084 * @param context Context instance
1085 * @param replyTo reply Address
1087 public static void nolocation(final Context context
, final Address replyTo
){
1088 Utils
.unregisterOngoing(context
, toNonNull(OngoingEvent
.LOCATION
));
1089 final LocationManager man
=(LocationManager
) context
.getApplicationContext().getSystemService(Context
.LOCATION_SERVICE
);
1090 man
.removeUpdates(locationListener
);
1091 locationListener
=null;
1092 Utils
.sendMessage(context
, replyTo
, no_longer_listening_for_location_updates
);
1096 * Take a photo and send it to a server.
1098 * @param context Context instance
1099 * @param replyTo reply Address
1100 * @param hostname server hostname
1101 * @param port server port
1103 public static void photo(final Context context
, final Address replyTo
, final String hostname
, final int port
){
1104 startCamera(context
, replyTo
);
1107 final Camera
.Parameters parms
=camera
.getParameters();
1108 parms
.setJpegQuality(70);
1109 parms
.setPictureFormat(ImageFormat
.JPEG
);
1110 camera
.setParameters(parms
);
1112 final SurfaceView fakeView
=new SurfaceView(context
);
1114 camera
.setPreviewDisplay(fakeView
.getHolder());
1115 } catch (IOException e
) {
1116 Utils
.sendMessage(context
, replyTo
, error_setting_preview_display
);
1119 camera
.startPreview();
1120 final Handler handler
=new Handler();
1122 new Thread(new Runnable() {
1127 } catch (InterruptedException e
) {
1131 handler
.post(new Runnable() {
1134 camera
.takePicture(null, null, new FonBotPictureCallback(context
, replyTo
, hostname
, port
));
1142 * Send a directory listing to an Address
1144 * @param context Context instance
1145 * @param replyTo destination Address
1146 * @param directory directory to list
1148 public static void ls(final Context context
, final Address replyTo
, final String directory
) {
1149 final File
[] files
=new File(directory
).listFiles();
1151 Utils
.sendMessage(context
, replyTo
, string_is_not_a_directory
, directory
);
1155 final StringBuilder sb
=new StringBuilder(context
.getString(files_in_directory
,directory
));
1156 for(final File file
: files
){
1157 sb
.append(file
.getName());
1158 if(file
.isDirectory())
1163 Utils
.sendMessage(context
, replyTo
, toNonNull(sb
.toString()));
1167 * Make the phone start ringing if it is not ringing or stop ringing if it is.
1169 * @param context Context instance
1170 * @param replyTo reply Address
1172 public static void ring(final Context context
, final Address replyTo
){
1173 setupRingtone(context
);
1175 Utils
.sendMessage(context
, replyTo
, no_ringtone_found
);
1178 if(ringtone
.isPlaying())
1179 stopAlarm(context
, replyTo
);
1181 startAlarm(context
, replyTo
);
1185 * Make the phone start/stop ringing.
1187 * @param context Context instance
1188 * @param replyTo reply Address
1189 * @param on true if the phone should start ringing, false otherwise
1191 public static void ring(final Context context
, final Address replyTo
, final boolean on
){
1192 setupRingtone(context
);
1194 Utils
.sendMessage(context
, replyTo
, no_ringtone_found
);
1197 if(on
&&!ringtone
.isPlaying())
1198 startAlarm(context
, replyTo
);
1199 else if(ringtone
.isPlaying()&&!on
)
1200 stopAlarm(context
, replyTo
);
1204 * Send the current ringer mode to an Address
1206 * @param context Context instance
1207 * @param replyTo destination Address
1209 public static void ringer(final Context context
, final Address replyTo
){
1210 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
1211 switch(man
.getRingerMode()){
1212 case AudioManager
.RINGER_MODE_NORMAL
:
1213 Utils
.sendMessage(context
, replyTo
, ringer_mode_normal
);
1215 case AudioManager
.RINGER_MODE_VIBRATE
:
1216 Utils
.sendMessage(context
, replyTo
, ringer_mode_vibrate
);
1218 case AudioManager
.RINGER_MODE_SILENT
:
1219 Utils
.sendMessage(context
, replyTo
, ringer_mode_silent
);
1222 Utils
.sendMessage(context
, replyTo
, unknown_ringer_mode
);
1227 * Set the ringer mode.
1229 * @param context Context instance
1230 * @param replyTo reply Address
1231 * @param ringerMode requested ringer mode
1233 * @see Utils.RingerMode
1235 public static void ringer(final Context context
, final Address replyTo
, final int ringerMode
){
1236 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
1237 man
.setRingerMode(ringerMode
);
1238 ringer(context
, replyTo
);
1242 * Remove a file or empty directory.
1244 * @param context Context instance
1245 * @param replyTo reply Address
1246 * @param filename file/empty directory to delete
1248 public static void rm(final Context context
, final Address replyTo
, final String filename
){
1249 if(new File(filename
).delete())
1250 Utils
.sendMessage(context
, replyTo
, file_deleted
);
1252 Utils
.sendMessage(context
, replyTo
, error_while_deleting_file
);
1256 * Clear the keyguard password.
1258 * @param context Context instance
1259 * @param replyTo reply Address
1260 * @throws SecurityException if FonBot does not have device administration permissions
1262 public static void setPassword(final Context context
, final Address replyTo
) throws SecurityException
{
1263 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
1265 dpm
.resetPassword("", 0);
1266 Utils
.sendMessage(context
, replyTo
, password_cleared
);
1270 * Change the keyguard password.
1272 * @param context Context instance
1273 * @param replyTo reply Address
1274 * @param password new password
1275 * @throws SecurityException if FonBot does not have device administration permissions
1277 public static void setPassword(final Context context
, final Address replyTo
, final String password
) throws SecurityException
{
1278 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
1280 dpm
.resetPassword(password
, 0);
1281 Utils
.sendMessage(context
, replyTo
, password_set
);
1285 * Send a text message.
1287 * @param context Context instance
1288 * @param replyTo reply Address
1289 * @param destination destination phone number
1290 * @param text text message contents
1292 public static void sms(final Context context
, final Address replyTo
, final String destination
, final String text
){
1293 final SmsManager manager
=SmsManager
.getDefault();
1294 final ArrayList
<String
> messages
=manager
.divideMessage(text
);
1295 if(messages
.size() > 1)
1296 Utils
.sendMessage(context
, replyTo
, message_was_split_into_parts
, Integer
.valueOf(messages
.size()));
1298 final ArrayList
<PendingIntent
> sents
=new ArrayList
<PendingIntent
>(messages
.size());
1299 final ArrayList
<PendingIntent
> delivereds
=new ArrayList
<PendingIntent
>(messages
.size());
1301 final String name
=Utils
.callerId(context
, destination
);
1302 final String fullDestination
;
1304 fullDestination
=destination
;
1306 fullDestination
=destination
+" ("+name
+")";
1308 for(int i
=0;i
<messages
.size();i
++){
1309 final Intent sent
=new Intent(context
,SmsStatusReceiver
.class);
1310 sent
.putExtra(SmsStatusReceiver
.EXTRA_DESTINATION
, fullDestination
);
1311 sent
.putExtra(SmsStatusReceiver
.EXTRA_PART
, i
+1);
1312 sent
.putExtra(SmsStatusReceiver
.EXTRA_TOTAL
, messages
.size());
1313 sent
.putExtra(SmsStatusReceiver
.EXTRA_REPLY_TO
, replyTo
.toString());
1314 sent
.setAction(SmsStatusReceiver
.SENT_ACTION
+i
);//actions must be unique
1315 sents
.add(PendingIntent
.getBroadcast(context
, 0, sent
, PendingIntent
.FLAG_UPDATE_CURRENT
));
1317 final Intent delivered
=new Intent(context
, SmsStatusReceiver
.class);
1318 delivered
.putExtra(SmsStatusReceiver
.EXTRA_DESTINATION
, fullDestination
);
1319 delivered
.putExtra(SmsStatusReceiver
.EXTRA_PART
, i
+1);
1320 delivered
.putExtra(SmsStatusReceiver
.EXTRA_TOTAL
, messages
.size());
1321 delivered
.putExtra(SmsStatusReceiver
.EXTRA_REPLY_TO
, replyTo
.toString());
1322 delivered
.setAction(SmsStatusReceiver
.DELIVERED_ACTION
+i
);//actions must be unique
1323 delivereds
.add(PendingIntent
.getBroadcast(context
, 0, delivered
, PendingIntent
.FLAG_UPDATE_CURRENT
));
1326 Log
.d(Heavy
.class.getName(), "Sending sms to "+destination
);
1327 manager
.sendMultipartTextMessage(destination
, null, messages
, sents
, delivereds
);
1331 * Send the last SMSes to an Address.
1333 * @param context Context instance
1334 * @param replyTo destination Address
1335 * @param numSms how many SMSes to send
1337 public static void smslog(final Context context
, final Address replyTo
, final int numSms
) {
1338 final String
[] fields
= {"type","address", "body", "date"};
1340 final Cursor cursor
= context
.getContentResolver().query (
1341 Uri
.parse("content://sms"),
1348 if (cursor
.moveToFirst()) {
1350 final String fromNumber
=cursor
.getString(1);
1352 final String name
=Utils
.callerId(context
, Utils
.toNonNull(fromNumber
));
1356 from
=fromNumber
+" ("+name
+')';
1357 final String message
=cursor
.getString(2).replace("\n", "\n ");
1358 final Date date
=new Date(cursor
.getLong(3));
1360 if(cursor
.getInt(0)==1)
1361 Utils
.sendMessage(context
, replyTo
, incoming_message
, from
, message
, date
);
1363 Utils
.sendMessage(context
, replyTo
, outgoing_message
, from
, message
, date
);
1364 } while (cursor
.moveToNext() && cursor
.getPosition() < numSms
);
1370 /** TTS instance, only used by {@link #speak(Context, Address, String)} */
1371 private static TextToSpeech tts
;
1374 * Speak a String using the text-to-speech engine.
1376 * @param context Context instance
1377 * @param replyTo reply Address
1378 * @param text text to speak
1380 public static void speak(final Context context
, final Address replyTo
, final String text
){
1381 tts
=new TextToSpeech(context
, new OnInitListener() {
1383 public void onInit(final int status
) {
1384 if(status
==TextToSpeech
.SUCCESS
){
1385 Utils
.sendMessage(context
, replyTo
, speaking
);
1386 tts
.speak(text
, TextToSpeech
.QUEUE_ADD
, null);
1388 Utils
.sendMessage(context
, replyTo
, tts_engine_not_available
);
1394 * Show a toast notification with the default duration.
1396 * @param context Context instance
1397 * @param replyTo reply Address
1398 * @param text toast text
1400 public static void toast(final Context context
, final Address replyTo
, final String text
){
1401 toast(context
, replyTo
, text
, Toast
.LENGTH_SHORT
);
1405 * Show a toast notification.
1407 * @param context Context instance
1408 * @param replyTo reply Address
1409 * @param text toast text
1410 * @param duration toast duration
1412 public static void toast(final Context context
, final Address replyTo
, final String text
, final int duration
){
1413 Toast
.makeText(context
,text
,duration
).show();
1414 Utils
.sendMessage(context
, replyTo
, toast_shown
);
1418 * Make the phone vibrate for a number of milliseconds.
1420 * @param context Context instance
1421 * @param replyTo reply Address
1422 * @param ms vibrate duration, in milliseconds
1424 public static void vibrate(final Context context
, final Address replyTo
, final long ms
){
1425 final Vibrator v
=(Vibrator
) context
.getSystemService(Context
.VIBRATOR_SERVICE
);
1426 Utils
.sendMessage(context
, replyTo
, vibrating
);
1431 * View an URI in an appropriate activity.
1433 * @param context Context instance
1434 * @param replyTo reply Address
1435 * @param uri URI to view
1437 public static void view(final Context context
, final Address replyTo
, final Uri uri
) {
1439 final Intent intent
=new Intent(Intent
.ACTION_VIEW
);
1440 intent
.setData(uri
);
1441 intent
.setFlags(Intent
.FLAG_FROM_BACKGROUND
|Intent
.FLAG_ACTIVITY_NEW_TASK
);
1442 context
.startActivity(intent
);
1443 Utils
.sendMessage(context
, replyTo
, url_opened
);
1444 } catch(ActivityNotFoundException e
){
1445 Utils
.sendMessage(context
, replyTo
, no_activity_found_for_this_url
);
1446 } catch(Exception e
){
1447 Utils
.sendMessage(context
, replyTo
, invalid_url
);
1452 * Get the current WiFi state.
1454 * @param context Context instance
1455 * @param replyTo reply Address
1457 public static void wifi(final Context context
, final Address replyTo
){
1458 final WifiManager man
=(WifiManager
) context
.getSystemService(Context
.WIFI_SERVICE
);
1459 if(man
.isWifiEnabled())
1460 Utils
.sendMessage(context
, replyTo
, wifi_on
);
1462 Utils
.sendMessage(context
, replyTo
, wifi_off
);
1466 * Set the WiFi state.
1468 * @param context Context instance
1469 * @param replyTo reply Address
1470 * @param on the requested WiFi state
1472 public static void wifi(final Context context
, final Address replyTo
, final boolean on
){
1473 final WifiManager man
=(WifiManager
) context
.getSystemService(Context
.WIFI_SERVICE
);
1474 man
.setWifiEnabled(on
);
1476 Utils
.sendMessage(context
, replyTo
, enabling_wifi
);
1478 Utils
.sendMessage(context
, replyTo
, disabling_wifi
);
1482 * Factory reset the phone, optionally deleting the SD card too.
1484 * @param context Context instance
1485 * @param type {@link Utils.WipeType} instance
1486 * @throws SecurityException if FonBot does not have device administration permissions
1488 @SuppressLint("InlinedApi")
1489 public static void wipe(final Context context
, final WipeType type
) throws SecurityException
{
1490 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
1497 dpm
.wipeData(DevicePolicyManager
.WIPE_EXTERNAL_STORAGE
);
1503 * Disable a Command. The command cannot be used until enabled again with the {@link Utils.Command#ENABLE ENABLE} command.
1505 * @param context Context instance
1506 * @param replyTo reply Address
1507 * @param command Command to disable
1509 public static void disable(final Context context
, final Address replyTo
, final Command command
){
1510 PreferenceManager
.getDefaultSharedPreferences(context
).edit()
1511 .putBoolean(command
+"disabled", true).commit();
1512 Utils
.sendMessage(context
, replyTo
, command_disabled
, command
);
1516 * Re-enable a disabled Command.
1518 * @param context Context instance
1519 * @param replyTo reply Address
1520 * @param command Command to re-enable
1522 public static void enable(final Context context
, final Address replyTo
, final Command command
){
1523 PreferenceManager
.getDefaultSharedPreferences(context
).edit()
1524 .remove(command
+"disabled").commit();
1525 Utils
.sendMessage(context
, replyTo
, command_enabled
, command
);
1530 * Check whether a Command is disabled.
1532 * @param context Context instance
1533 * @param command Command to check
1534 * @return true if the Command is disabled, false otherwise
1536 public static boolean isCommandDisabled(final Context context
, final Command command
){
1537 return PreferenceManager
.getDefaultSharedPreferences(context
).getBoolean(command
+"disabled", false);
1541 * Poll the server for pending commands.
1543 * @param context Context instance
1544 * @param replyTo reply Address
1546 public static void poll(final Context context
, final Address replyTo
) {
1547 Utils
.sendMessage(context
, replyTo
, polling_server
);
1548 context
.startService(new Intent(context
, FonBotMainService
.class));
1552 * Get an instance of {@link ITelephony}
1554 * @param context Context instance
1555 * @return an instance of {@link ITelephony}
1556 * @throws NoSuchMethodException thrown by reflection
1557 * @throws IllegalArgumentException thrown by reflection
1558 * @throws IllegalAccessException thrown by reflection
1559 * @throws InvocationTargetException thrown by reflection
1561 private static ITelephony
getITelephony(final Context context
) throws NoSuchMethodException
, IllegalArgumentException
, IllegalAccessException
, InvocationTargetException
{
1562 final TelephonyManager man
=(TelephonyManager
) context
.getSystemService(Context
.TELEPHONY_SERVICE
);
1563 final Method m
=TelephonyManager
.class.getDeclaredMethod("getITelephony");
1564 m
.setAccessible(true);
1565 return toNonNull((ITelephony
) m
.invoke(man
));
1569 * Hang up the phone.
1571 * @param context Context instance
1572 * @param replyTo reply Address
1574 public static void hangup(final Context context
, final Address replyTo
){
1576 getITelephony(context
).endCall();
1577 } catch(Exception e
){
1578 Utils
.sendMessage(context
, replyTo
, exception_while_hanging_up_call
,
1579 e
.getClass().getName(), e
.getMessage());
1584 * Answer the phone if it is ringing.
1586 * @param context Context instance
1587 * @param replyTo reply Address
1589 public static void answer(final Context context
, final Address replyTo
){
1591 getITelephony(context
).answerRingingCall();
1592 } catch(Exception e
){
1593 Utils
.sendMessage(context
, replyTo
, exception_while_answering_call
,
1594 e
.getClass().getName(), e
.getMessage());
1601 * @param context Context instance
1602 * @param replyTo reply Address
1603 * @param pkg name of the package to launch
1605 public static void launch(final Context context
, final Address replyTo
, final String pkg
){
1606 final Intent intent
=context
.getPackageManager().getLaunchIntentForPackage(pkg
);
1608 Utils
.sendMessage(context
, replyTo
, no_such_package
);
1611 context
.startActivity(intent
);
1612 Utils
.sendMessage(context
, replyTo
, app_launched
);
1616 * Get the mobile data enabled status.
1618 * @param context Context instance
1619 * @param replyTo reply Address
1621 public static void data(final Context context
, final Address replyTo
){
1623 final ConnectivityManager man
=(ConnectivityManager
) context
.getSystemService(Context
.CONNECTIVITY_SERVICE
);
1624 final Method m
=ConnectivityManager
.class.getDeclaredMethod("getMobileDataEnabled");
1625 m
.setAccessible(true);
1626 if(((Boolean
)m
.invoke(man
)).booleanValue())
1627 Utils
.sendMessage(context
, replyTo
, data_on
);
1629 Utils
.sendMessage(context
, replyTo
, data_off
);
1630 } catch(Exception e
){
1631 Utils
.sendMessage(context
, replyTo
, exception_while_determining_data_state
,
1632 e
.getClass().getName(), e
.getMessage());
1637 * Set the mobile data enabled status.
1639 * @param context Context instance
1640 * @param replyTo reply Address
1641 * @param enable whether to enable mobile data
1643 public static void data(final Context context
, final Address replyTo
, final boolean enable
) {
1646 getITelephony(context
).enableDataConnectivity();
1647 Utils
.sendMessage(context
, replyTo
, enabling_data
);
1649 getITelephony(context
).disableDataConnectivity();
1650 Utils
.sendMessage(context
, replyTo
, disabling_data
);
1652 } catch(Exception e
){
1653 Utils
.sendMessage(context
, replyTo
, exception_while_getting_itelephony
,
1654 e
.getClass().getName(), e
.getMessage());
1659 * Get the GPS status.
1661 * @param context Context instance
1662 * @param replyTo reply Address
1664 public static void gps(final Context context
, final Address replyTo
){
1665 if(Secure
.isLocationProviderEnabled(context
.getContentResolver(), LocationManager
.GPS_PROVIDER
))
1666 Utils
.sendMessage(context
, replyTo
, gps_on
);
1668 Utils
.sendMessage(context
, replyTo
, gps_off
);
1672 * Set the GPS status.
1674 * @param context Context instance
1675 * @param replyTo reply Address
1676 * @param enabled requested GPS status
1678 public static void gps(final Context context
, final Address replyTo
, final boolean enabled
) {
1679 Secure
.setLocationProviderEnabled(context
.getContentResolver(), LocationManager
.GPS_PROVIDER
, enabled
);
1681 Utils
.sendMessage(context
, replyTo
, enabling_gps
);
1683 Utils
.sendMessage(context
, replyTo
, disabling_gps
);
1687 * Get the Google location (aka network location) state.
1689 * @param context Context instance
1690 * @param replyTo reply Address
1692 public static void glocation(final Context context
, final Address replyTo
){
1693 if(Secure
.isLocationProviderEnabled(context
.getContentResolver(), LocationManager
.NETWORK_PROVIDER
))
1694 Utils
.sendMessage(context
, replyTo
, network_location_on
);
1696 Utils
.sendMessage(context
, replyTo
, network_location_off
);
1700 * Set the Google location (aka network location) state.
1702 * @param context Context instance
1703 * @param replyTo reply Address
1704 * @param enabled requested Google location state
1706 public static void glocation(final Context context
, final Address replyTo
, final boolean enabled
) {
1707 Secure
.setLocationProviderEnabled(context
.getContentResolver(), LocationManager
.NETWORK_PROVIDER
, enabled
);
1709 Utils
.sendMessage(context
, replyTo
, enabling_network_location
);
1711 Utils
.sendMessage(context
, replyTo
, disabling_network_location
);
1717 * @param context Context instance
1718 * @param replyTo reply Address
1719 * @param reason reboot reason
1721 * @see PowerManager#reboot(String)
1723 public static void reboot(final Context context
, final Address replyTo
, final @Nullable String reason
) {
1724 final PowerManager pm
=(PowerManager
) context
.getSystemService(Context
.POWER_SERVICE
);
1725 Utils
.sendMessage(context
, replyTo
, rebooting
);
1730 * Cancel a notification.
1732 * @param context Context instance
1733 * @param replyTo reply Address
1734 * @param id notification ID
1736 public static void notify(final Context context
, final Address replyTo
, final int id
) {
1737 final NotificationManager man
=(NotificationManager
) context
.getSystemService(Context
.NOTIFICATION_SERVICE
);
1739 Utils
.sendMessage(context
, replyTo
, notification_canceled
);
1743 * Show a notification.
1745 * @param context Context instance
1746 * @param replyTo reply Address
1747 * @param id notification ID
1748 * @param title notificationO title
1749 * @param text notification text
1751 public static void notify(final Context context
, final Address replyTo
, final int id
, final String title
, final String text
) {
1752 final NotificationManager man
=(NotificationManager
) context
.getSystemService(Context
.NOTIFICATION_SERVICE
);
1753 man
.notify(id
, new NotificationCompat
.Builder(context
).
1754 setContentTitle(title
).
1755 setContentText(text
).
1756 setSmallIcon(android
.R
.drawable
.stat_notify_sync_noanim
).
1758 Utils
.sendMessage(context
, replyTo
, notification_shown
);
1762 * Take a screen capture. Uses the screencap utility and requires root.
1764 * @param context Context instance
1765 * @param replyTo reply Address
1766 * @param filename capture file location
1768 public static void screencap(final Context context
, final Address replyTo
, final String filename
){
1769 new Thread(new ScreencapRunnable(context
, replyTo
, filename
)).start();
1773 * Toggle the torch state using the Torch (net.cactii.torch2) app.
1775 * @param context Context instance
1776 * @param replyTo reply Address
1778 public static void torch(final Context context
, final Address replyTo
){
1779 context
.sendBroadcast(new Intent("net.cactii.flash2.TOGGLE_FLASHLIGHT"));
1780 Utils
.sendMessage(context
, replyTo
, toggling_torch_state
);