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 * Get help for a particular command
329 * @param context Context instance
330 * @param replyTo reply Address
331 * @param command command to get help for
333 public static void help(final Context context
, final Address replyTo
, final Command command
){//NOPMD method is a big switch statement. Nothing confusing.
336 Utils
.sendMessage(context
, replyTo
, answer_help
);
339 Utils
.sendMessage(context
, replyTo
, batt_help
);
342 Utils
.sendMessage(context
, replyTo
, bluetooth_help
);
345 Utils
.sendMessage(context
, replyTo
, calllog_help
);
348 Utils
.sendMessage(context
, replyTo
, contacts_help
);
351 Utils
.sendMessage(context
, replyTo
, data_help
);
353 case DELNOTIFICATION
:
354 Utils
.sendMessage(context
, replyTo
, delnotification_help
, Utils
.join(", ", toNonNull(MessageType
.values())));
357 Utils
.sendMessage(context
, replyTo
, dial_help
);
360 Utils
.sendMessage(context
, replyTo
, dialog_help
);
363 Utils
.sendMessage(context
, replyTo
, disable_help
, Utils
.join(", ", toNonNull(Command
.values())));
366 Utils
.sendMessage(context
, replyTo
, echo_help
);
369 Utils
.sendMessage(context
, replyTo
, enable_help
, Utils
.join(", ", toNonNull(Command
.values())));
372 Utils
.sendMessage(context
, replyTo
, flash_help
);
375 Utils
.sendMessage(context
, replyTo
, glocation_help
);
378 Utils
.sendMessage(context
, replyTo
, gps_help
);
381 Utils
.sendMessage(context
, replyTo
, hangup_help
);
384 Utils
.sendMessage(context
, replyTo
, help_help
, Utils
.join(", ",toNonNull(Command
.values())));
387 Utils
.sendMessage(context
, replyTo
, launch_help
);
390 Utils
.sendMessage(context
, replyTo
, location_help
, Utils
.join(", ",toNonNull(Utils
.LocationProvider
.values())));
393 Utils
.sendMessage(context
, replyTo
, lock_help
);
396 Utils
.sendMessage(context
, replyTo
, ls_help
);
399 Utils
.sendMessage(context
, replyTo
, ncfile_help
);
402 Utils
.sendMessage(context
, replyTo
, next_help
);
405 Utils
.sendMessage(context
, replyTo
, nolocation_help
);
408 Utils
.sendMessage(context
, replyTo
, pause_help
);
411 Utils
.sendMessage(context
, replyTo
, photo_help
);
414 Utils
.sendMessage(context
, replyTo
, play_help
);
417 Utils
.sendMessage(context
, replyTo
, poll_help
);
420 Utils
.sendMessage(context
, replyTo
, prev_help
);
423 Utils
.sendMessage(context
, replyTo
, ring_help
);
426 Utils
.sendMessage(context
, replyTo
, ringer_help
, Utils
.join(", ", toNonNull(RingerMode
.values())));
429 Utils
.sendMessage(context
, replyTo
, rm_help
);
431 case SETNOTIFICATION
:
432 Utils
.sendMessage(context
, replyTo
, setnotification_help
, Utils
.join(", ", toNonNull(MessageType
.values())));
435 Utils
.sendMessage(context
, replyTo
, setpassword_help
);
438 Utils
.sendMessage(context
, replyTo
, sms_help
);
441 Utils
.sendMessage(context
, replyTo
, smslog_help
);
444 Utils
.sendMessage(context
, replyTo
, speak_help
);
447 Utils
.sendMessage(context
, replyTo
, toast_help
);
450 Utils
.sendMessage(context
, replyTo
, vibrate_help
);
453 Utils
.sendMessage(context
, replyTo
, view_help
);
456 Utils
.sendMessage(context
, replyTo
, wifi_help
);
459 Utils
.sendMessage(context
, replyTo
, wipe_help
, Utils
.WIPE_CONFIRM_STRING
);
462 Utils
.sendMessage(context
, replyTo
, reboot_help
);
465 Utils
.sendMessage(context
, replyTo
, shutdown_help
);
468 Utils
.sendMessage(context
, replyTo
, notify_help
);
475 * @see #startCamera(Context, Address)
478 private static Camera camera
;
480 * Ringtone used by the {@link Utils.Command#RING RING} command.
482 * @see #setupRingtone(Context)
484 private static Ringtone ringtone
;
486 * Saved ringer volume.
488 * @see #startAlarm(Context, Address)
489 * @see #stopAlarm(Context, Address)
491 private static int savedRingVolume
;
495 * @see #startAlarm(Context, Address)
496 * @see #stopAlarm(Context, Address)
498 private static int savedRingerMode
;
500 /** Private constructor */
506 * Convert a phone number type to a string
508 * @param context Context instance
509 * @param type phone number type
510 * @param label name of a custom phone type
511 * @return the phone number type
513 private static @Nullable String
phoneNumberType(final Context context
, final int type
, final @Nullable String label
) {
515 case BaseTypes
.TYPE_CUSTOM
:
517 case Phone
.TYPE_ASSISTANT
:
518 return context
.getString(phone_numer_type_assistant
);
519 case Phone
.TYPE_CALLBACK
:
520 return context
.getString(phone_number_type_callback
);
522 return context
.getString(phone_number_type_car
);
523 case Phone
.TYPE_COMPANY_MAIN
:
524 return context
.getString(phone_number_type_company_main
);
525 case Phone
.TYPE_FAX_HOME
:
526 return context
.getString(phone_number_type_home_fax
);
527 case Phone
.TYPE_FAX_WORK
:
528 return context
.getString(phone_number_type_work_fax
);
529 case Phone
.TYPE_HOME
:
530 return context
.getString(phone_number_type_home
);
531 case Phone
.TYPE_ISDN
:
532 return context
.getString(phone_number_type_isdn
);
533 case Phone
.TYPE_MAIN
:
534 return context
.getString(phone_number_type_main
);
536 return context
.getString(phone_number_type_mms
);
537 case Phone
.TYPE_MOBILE
:
538 return context
.getString(phone_number_type_mobile
);
539 case Phone
.TYPE_OTHER
:
540 return context
.getString(phone_number_type_other
);
541 case Phone
.TYPE_OTHER_FAX
:
542 return context
.getString(phone_number_type_other_fax
);
543 case Phone
.TYPE_PAGER
:
544 return context
.getString(phone_number_type_pager
);
545 case Phone
.TYPE_RADIO
:
546 return context
.getString(phone_number_type_radio
);
547 case Phone
.TYPE_TELEX
:
548 return context
.getString(phone_number_type_telex
);
549 case Phone
.TYPE_TTY_TDD
:
550 return context
.getString(phone_number_type_textphone
);
551 case Phone
.TYPE_WORK
:
552 return context
.getString(phone_number_type_work
);
553 case Phone
.TYPE_WORK_MOBILE
:
554 return context
.getString(phone_number_type_work_mobile
);
555 case Phone
.TYPE_WORK_PAGER
:
556 return context
.getString(phone_number_type_work_pager
);
559 return context
.getString(phone_number_type_unknown
, Integer
.valueOf(type
));
563 * Setup the ringtone used by the {@link Utils.Command#RING RING} command
565 * @param context Context
567 private static void setupRingtone(final Context context
){
568 if(ringtone
==null){//NOPMD not supposed to be thread-safe
569 final Uri alert
=RingtoneManager
.getDefaultUri(RingtoneManager
.TYPE_RINGTONE
);
570 ringtone
=RingtoneManager
.getRingtone(context
, alert
);
575 * Make the phone start ringing. Turns up the volume and sets the ringer mode to NORMAL
577 * @param context Context instance
578 * @param replyTo reply Address
580 private static void startAlarm(final Context context
, final Address replyTo
){
581 Utils
.registerOngoing(context
, toNonNull(OngoingEvent
.RING
));
582 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
583 savedRingerMode
=man
.getRingerMode();
584 man
.setRingerMode(AudioManager
.RINGER_MODE_NORMAL
);
585 savedRingVolume
=man
.getStreamVolume(AudioManager
.STREAM_RING
);
586 man
.setStreamVolume(AudioManager
.STREAM_RING
, man
.getStreamMaxVolume(AudioManager
.STREAM_RING
), 0);
587 Utils
.sendMessage(context
, replyTo
, ringing
);
592 * Get a camera instance.
594 * @param context Context instance
595 * @param replyTo reply Address
597 private static void startCamera(final Context context
, final Address replyTo
){
601 camera
=Camera
.open();
602 } catch (Exception e
){
603 Utils
.sendMessage(context
, replyTo
, cannot_grab_camera
);
608 * Make the phone stop ringing. Restores the volume and ringer mode.
610 * @param context Context instance
611 * @param replyTo reply Address
613 private static void stopAlarm(final Context context
, final Address replyTo
){
614 Utils
.unregisterOngoing(context
, toNonNull(OngoingEvent
.RING
));
615 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
616 Utils
.sendMessage(context
, replyTo
, no_longer_ringing
);
618 man
.setStreamVolume(AudioManager
.STREAM_RING
, savedRingVolume
, 0);
619 man
.setRingerMode(savedRingerMode
);
623 * Release the previously grabbed camera instance
625 * @see #startCamera(Context, Address)
627 private static void stopCamera(){
635 * Send battery status information to an Address
637 * @param context Context instance
638 * @param replyTo destination Address
640 * @see #describeBatteryLevel(Context, Address, MessageType)
642 public static void batt(final Context context
, final Address replyTo
){
643 describeBatteryLevel(context
, replyTo
, null);
647 * Show the bluetooth radio status.
649 * @param context Context instance
650 * @param replyTo destination Address
652 public static void bluetooth(final Context context
, final Address replyTo
) {
653 final BluetoothAdapter adapter
=BluetoothAdapter
.getDefaultAdapter();
655 Utils
.sendMessage(context
, replyTo
, no_bluetooth_adapter
);
659 if(adapter
.isEnabled())
660 Utils
.sendMessage(context
, replyTo
, bluetooth_on
);
662 Utils
.sendMessage(context
, replyTo
, bluetooth_off
);
666 * Set the bluetooth radio status.
668 * @param context Context instance
669 * @param replyTo destination Address
670 * @param on the requested radio status
672 public static void bluetooth(final Context context
, final Address replyTo
, final boolean on
){
673 final BluetoothAdapter adapter
=BluetoothAdapter
.getDefaultAdapter();
675 Utils
.sendMessage(context
, replyTo
, no_bluetooth_adapter
);
681 Utils
.sendMessage(context
, replyTo
, enabling_bluetooth
);
685 Utils
.sendMessage(context
, replyTo
, disabling_bluetooth
);
690 * Cancel an ongoing event.
692 * @param context Context instance
693 * @param event the event to cancel
695 public static void cancelOngoing(final Context context
, final OngoingEvent event
){
698 nolocation(context
, toNonNull(Address
.BLACKHOLE
));
701 poll(context
, toNonNull(Address
.BLACKHOLE
), 0);
704 ring(context
, toNonNull(Address
.BLACKHOLE
), false);
710 * Send the last calls to an Address.
712 * @param context Context instance
713 * @param replyTo destination Address
714 * @param numCalls how many calls to send
716 public static void calllog(final Context context
, final Address replyTo
, final int numCalls
) {
717 final String
[] fields
= {
718 Calls
.TYPE
, Calls
.NUMBER
, Calls
.CACHED_NAME
, Calls
.DURATION
, Calls
.DATE
721 final Cursor cursor
= context
.getContentResolver().query(
729 if (cursor
.moveToFirst()) {
731 final StringBuilder sb
=new StringBuilder(50);//NOPMD different strings
732 final int type
=cursor
.getInt(0);
733 final String from
=cursor
.getString(1);
736 case Calls
.INCOMING_TYPE
:
737 sb
.append(context
.getString(incoming_call_from
, from
));
739 case Calls
.MISSED_TYPE
:
740 sb
.append(context
.getString(missed_call_from
, from
));
742 case Calls
.OUTGOING_TYPE
:
743 sb
.append(context
.getString(outgoing_call_to
, from
));
747 if (cursor
.getString(2) != null)
748 sb
.append('(').append(cursor
.getString(2)).append(") ");
750 sb
.append(context
.getString(duration_seconds_starting_at
,
751 Long
.valueOf(cursor
.getLong(3)),
752 new Date(cursor
.getLong(4))));
754 Utils
.sendMessage(context
, replyTo
, toNonNull(sb
.toString()));
755 } while (cursor
.moveToNext() && cursor
.getPosition() < numCalls
);
762 * Search for contacts by name/nickname and send matching entries to an Address.
764 * @param context Context instance
765 * @param replyTo destination Address
766 * @param name name/nickname part to search for
768 @SuppressLint("StringFormatMatches")
769 public static void contacts(final Context context
, final Address replyTo
, final String name
){
770 final Cursor cursor
=context
.getContentResolver().query(Uri
.withAppendedPath(
771 Contacts
.CONTENT_FILTER_URI
, name
),
772 new String
[]{Contacts
.DISPLAY_NAME
, BaseColumns
._ID
, Contacts
.LOOKUP_KEY
},
773 null, null, Contacts
.DISPLAY_NAME
);
775 if(cursor
.getCount()==0)
776 Utils
.sendMessage(context
, replyTo
, no_matching_contacts_found
);
778 while(cursor
.moveToNext()){
779 final String
[] fields
= {
780 CommonDataKinds
.Phone
.NUMBER
,
781 CommonDataKinds
.Phone
.TYPE
,
782 CommonDataKinds
.Phone
.LABEL
,
785 final Cursor inCursor
=context
.getContentResolver().query(Data
.CONTENT_URI
,
787 Data
.CONTACT_ID
+" = ? AND "+Data
.MIMETYPE
+ " = ?",
788 new String
[]{Long
.toString(cursor
.getLong(1)), CommonDataKinds
.Phone
.CONTENT_ITEM_TYPE
},
789 CommonDataKinds
.Phone
.LABEL
);
791 while(inCursor
.moveToNext())
792 Utils
.sendMessage(context
, replyTo
, toNonNull(context
.getString(contact_info
,
794 inCursor
.getString(0),
795 phoneNumberType(context
, inCursor
.getInt(1), inCursor
.getString(2)))));
804 * Send battery status information to an Address or as a notification
806 * @param context Context instance
807 * @param replyTo Address to send the information to, if sending to a direct address. Null otherwise.
808 * @param type Notification type, if sending as a notification. Null otherwise.
810 public static void describeBatteryLevel(final Context context
, final @Nullable Address replyTo
, final @Nullable MessageType type
) {
811 if(replyTo
==null&&type
==null)
813 final Intent intent
=context
.registerReceiver(null, new IntentFilter(Intent
.ACTION_BATTERY_CHANGED
));
816 final double level
=intent
.getIntExtra(BatteryManager
.EXTRA_LEVEL
, 0);
817 final int scale
=intent
.getIntExtra(BatteryManager
.EXTRA_SCALE
, 100);
818 final int plugged
=intent
.getIntExtra(BatteryManager
.EXTRA_PLUGGED
, 0);
819 final int status
=intent
.getIntExtra(BatteryManager
.EXTRA_STATUS
, BatteryManager
.BATTERY_STATUS_UNKNOWN
);
820 final int temp
=intent
.getIntExtra(BatteryManager
.EXTRA_TEMPERATURE
, 0);
821 final int volt
=intent
.getIntExtra(BatteryManager
.EXTRA_VOLTAGE
, 0);
823 final StringBuilder sb
=new StringBuilder(100);
824 sb
.append(context
.getString(battery_level
, Double
.valueOf(level
*100/scale
)));
828 sb
.append(context
.getString(not_plugged_in
));
830 case BatteryManager
.BATTERY_PLUGGED_AC
:
831 sb
.append(context
.getString(plugged_in_ac
));
833 case BatteryManager
.BATTERY_PLUGGED_USB
:
834 sb
.append(context
.getString(plugged_in_usb
));
836 case BatteryManager
.BATTERY_PLUGGED_WIRELESS
:
837 sb
.append(context
.getString(plugged_in_wireless
));
842 case BatteryManager
.BATTERY_STATUS_CHARGING
:
843 sb
.append(context
.getString(status_charging
));
845 case BatteryManager
.BATTERY_STATUS_DISCHARGING
:
846 sb
.append(context
.getString(status_discharging
));
848 case BatteryManager
.BATTERY_STATUS_FULL
:
849 sb
.append(context
.getString(status_full
));
851 case BatteryManager
.BATTERY_STATUS_NOT_CHARGING
:
852 sb
.append(context
.getString(status_not_charging
));
854 case BatteryManager
.BATTERY_STATUS_UNKNOWN
:
855 sb
.append(context
.getString(status_unknown
));
859 sb
.append(context
.getString(temperature
, Integer
.valueOf(temp
)));
861 sb
.append(context
.getString(voltage
, Integer
.valueOf(volt
)));
863 Utils
.sendMessage(context
, toNonNull(replyTo
), toNonNull(sb
.toString()));
865 Utils
.sendMessage(context
, type
, toNonNull(sb
.toString()));
869 * Dial a phone number.
871 * @param context Context instance
872 * @param replyTo reply Address
873 * @param nr phone number to dial
875 public static void dial(final Context context
, final Address replyTo
, final String nr
){
876 final Intent intent
=new Intent(Intent
.ACTION_CALL
,Uri
.parse("tel:"+nr
));
877 intent
.addFlags(Intent
.FLAG_ACTIVITY_NEW_TASK
);
878 final String name
=Utils
.callerId(context
, nr
);
880 Utils
.sendMessage(context
, replyTo
, dialing
, nr
);
882 Utils
.sendMessage(context
, replyTo
, dialing
, nr
+" ("+name
+")");
883 context
.startActivity(intent
);
887 * Show a dialog with a message and a list of buttons.
889 * @param context Context instance
890 * @param replyTo reply Address
891 * @param message dialog message
892 * @param buttons dialog buttons
894 public static void dialog(final Context context
, final Address replyTo
, final String message
, final String
[] buttons
){
895 final Intent intent
=new Intent(context
, DialogActivity
.class);
896 intent
.putExtra(DialogActivity
.EXTRA_MESSAGE
, message
);
897 intent
.putExtra(DialogActivity
.EXTRA_BUTTONS
, buttons
);
898 intent
.putExtra(DialogActivity
.EXTRA_REPLYTO
, replyTo
.toString());
900 Intent
.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
|
901 Intent
.FLAG_ACTIVITY_NEW_TASK
|
902 Intent
.FLAG_ACTIVITY_NO_USER_ACTION
|
903 Intent
.FLAG_FROM_BACKGROUND
);
904 Utils
.sendMessage(context
, toNonNull(replyTo
), showing_dialog
);
905 context
.startActivity(intent
);
909 * Turns the flashlight on or off.
911 * @param context Context instance
912 * @param replyTo reply Address
913 * @param on requested flashlight state
915 public static void flash(final Context context
, final Address replyTo
, final boolean on
){
916 startCamera(context
, replyTo
);
919 final Camera
.Parameters parms
=camera
.getParameters();
921 parms
.setFlashMode(Camera
.Parameters
.FLASH_MODE_TORCH
);
922 camera
.setParameters(parms
);
924 parms
.setFlashMode(Camera
.Parameters
.FLASH_MODE_AUTO
);
925 camera
.setParameters(parms
);
931 * Start sending location updates to an Address.
933 * @param context Context instance
934 * @param replyTo destination Address
935 * @param provider LocationProvider
936 * @param minTime minimum time between two consecutive updates (in ms)
937 * @param minDistance minimum distance between two consecutive updates (in meters)
939 * @see LocationManager#requestLocationUpdates(String, long, float, LocationListener)
941 public static void location(final Context context
, final Address replyTo
, final String provider
,final long minTime
,final float minDistance
){
942 final LocationManager man
=(LocationManager
) context
.getApplicationContext().getSystemService(Context
.LOCATION_SERVICE
);
943 if(locationListener
!=null)
944 nolocation(context
, toNonNull(Address
.BLACKHOLE
));
945 Utils
.registerOngoing(context
, toNonNull(OngoingEvent
.LOCATION
));
946 locationListener
=new FonBotLocationListener(context
, replyTo
);
947 man
.removeUpdates(locationListener
);
948 final Location lastKnownLocation
=man
.getLastKnownLocation(provider
);
949 if(lastKnownLocation
!=null){
950 Utils
.sendMessage(context
, replyTo
, last_known_location
);
951 locationListener
.onLocationChanged(lastKnownLocation
);
953 Utils
.sendMessage(context
, replyTo
, listening_for_location_updates
);
954 man
.requestLocationUpdates(provider
, minTime
, minDistance
, locationListener
);
960 * @param context Context instance
961 * @param replyTo reply Address
963 public static void lock(final Context context
, final Address replyTo
) {
964 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
966 Utils
.sendMessage(context
, replyTo
, device_locked
);
970 * Send a command to a running instance of the music player
972 * @param context Context instance
973 * @param replyTo reply Address
974 * @param command command to send
976 public static void musicPlayerCommand(final Context context
, final Address replyTo
, final String command
) {
977 final Intent intent
=new Intent("com.android.music.musicservicecommand");
978 intent
.putExtra("command", command
);
979 context
.sendBroadcast(intent
);
980 Utils
.sendMessage(context
, replyTo
, command_sent
);
984 * Send a file to a server.
986 * @param context Context instance
987 * @param replyTo reply Address
988 * @param filename file to send
989 * @param hostname server hostname
990 * @param port server port
992 public static void ncfile(final Context context
, final Address replyTo
, final String filename
,final String hostname
,final int port
){
993 new AsyncTask
<Void
, Void
, Void
>() {
995 protected @Nullable Void
doInBackground(@Nullable final Void
... params
) {
996 final FileChannel in
;
998 in
=new FileInputStream(filename
).getChannel();
999 } catch (final FileNotFoundException e
){
1000 Utils
.sendMessage(context
, replyTo
, file_not_found
, filename
);
1003 final SocketChannel sock
;
1005 sock
= SocketChannel
.open(new InetSocketAddress(hostname
, port
));
1006 } catch (final IOException e
){
1007 Utils
.sendMessage(context
, replyTo
, toNonNull(context
.getString(
1008 cannot_connect_to_host_on_port
, hostname
, Integer
.valueOf(port
))));
1011 } catch (IOException ex
) {
1018 in
.transferTo(0, in
.size(), sock
);
1019 } catch (final IOException e
){
1020 Utils
.sendMessage(context
, replyTo
, toNonNull(context
.getString(
1021 io_error
, e
.getMessage())));
1025 } catch (IOException e
){
1030 } catch(IOException e
){
1038 protected void onPostExecute(@Nullable final Void result
) {
1039 Utils
.sendMessage(context
, replyTo
, file_sent
);
1045 * Stop sending location updates.
1047 * @param context Context instance
1048 * @param replyTo reply Address
1050 public static void nolocation(final Context context
, final Address replyTo
){
1051 Utils
.unregisterOngoing(context
, toNonNull(OngoingEvent
.LOCATION
));
1052 final LocationManager man
=(LocationManager
) context
.getApplicationContext().getSystemService(Context
.LOCATION_SERVICE
);
1053 man
.removeUpdates(locationListener
);
1054 locationListener
=null;
1055 Utils
.sendMessage(context
, replyTo
, no_longer_listening_for_location_updates
);
1059 * Take a photo and send it to a server.
1061 * @param context Context instance
1062 * @param replyTo reply Address
1063 * @param hostname server hostname
1064 * @param port server port
1066 public static void photo(final Context context
, final Address replyTo
, final String hostname
, final int port
){
1067 startCamera(context
, replyTo
);
1070 final Camera
.Parameters parms
=camera
.getParameters();
1071 parms
.setJpegQuality(70);
1072 parms
.setPictureFormat(ImageFormat
.JPEG
);
1073 camera
.setParameters(parms
);
1075 final SurfaceView fakeView
=new SurfaceView(context
);
1077 camera
.setPreviewDisplay(fakeView
.getHolder());
1078 } catch (IOException e
) {
1079 Utils
.sendMessage(context
, replyTo
, error_setting_preview_display
);
1082 camera
.startPreview();
1083 final Handler handler
=new Handler();
1085 new Thread(new Runnable() {
1090 } catch (InterruptedException e
) {
1094 handler
.post(new Runnable() {
1097 camera
.takePicture(null, null, new FonBotPictureCallback(context
, replyTo
, hostname
, port
));
1105 * Send a directory listing to an Address
1107 * @param context Context instance
1108 * @param replyTo destination Address
1109 * @param directory directory to list
1111 public static void ls(final Context context
, final Address replyTo
, final String directory
) {
1112 final File
[] files
=new File(directory
).listFiles();
1114 Utils
.sendMessage(context
, replyTo
, string_is_not_a_directory
, directory
);
1118 final StringBuilder sb
=new StringBuilder(context
.getString(files_in_directory
,directory
));
1119 for(final File file
: files
){
1120 sb
.append(file
.getName());
1121 if(file
.isDirectory())
1126 Utils
.sendMessage(context
, replyTo
, toNonNull(sb
.toString()));
1130 * Make the phone start ringing if it is not ringing or stop ringing if it is.
1132 * @param context Context instance
1133 * @param replyTo reply Address
1135 public static void ring(final Context context
, final Address replyTo
){
1136 setupRingtone(context
);
1138 Utils
.sendMessage(context
, replyTo
, no_ringtone_found
);
1141 if(ringtone
.isPlaying())
1142 stopAlarm(context
, replyTo
);
1144 startAlarm(context
, replyTo
);
1148 * Make the phone start/stop ringing.
1150 * @param context Context instance
1151 * @param replyTo reply Address
1152 * @param on true if the phone should start ringing, false otherwise
1154 public static void ring(final Context context
, final Address replyTo
, final boolean on
){
1155 setupRingtone(context
);
1157 Utils
.sendMessage(context
, replyTo
, no_ringtone_found
);
1160 if(on
&&!ringtone
.isPlaying())
1161 startAlarm(context
, replyTo
);
1162 else if(ringtone
.isPlaying()&&!on
)
1163 stopAlarm(context
, replyTo
);
1167 * Send the current ringer mode to an Address
1169 * @param context Context instance
1170 * @param replyTo destination Address
1172 public static void ringer(final Context context
, final Address replyTo
){
1173 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
1174 switch(man
.getRingerMode()){
1175 case AudioManager
.RINGER_MODE_NORMAL
:
1176 Utils
.sendMessage(context
, replyTo
, ringer_mode_normal
);
1178 case AudioManager
.RINGER_MODE_VIBRATE
:
1179 Utils
.sendMessage(context
, replyTo
, ringer_mode_vibrate
);
1181 case AudioManager
.RINGER_MODE_SILENT
:
1182 Utils
.sendMessage(context
, replyTo
, ringer_mode_silent
);
1185 Utils
.sendMessage(context
, replyTo
, unknown_ringer_mode
);
1190 * Set the ringer mode.
1192 * @param context Context instance
1193 * @param replyTo reply Address
1194 * @param ringerMode requested ringer mode
1196 * @see Utils.RingerMode
1198 public static void ringer(final Context context
, final Address replyTo
, final int ringerMode
){
1199 final AudioManager man
=(AudioManager
) context
.getSystemService(Context
.AUDIO_SERVICE
);
1200 man
.setRingerMode(ringerMode
);
1201 ringer(context
, replyTo
);
1205 * Remove a file or empty directory.
1207 * @param context Context instance
1208 * @param replyTo reply Address
1209 * @param filename file/empty directory to delete
1211 public static void rm(final Context context
, final Address replyTo
, final String filename
){
1212 if(new File(filename
).delete())
1213 Utils
.sendMessage(context
, replyTo
, file_deleted
);
1215 Utils
.sendMessage(context
, replyTo
, error_while_deleting_file
);
1219 * Clear the keyguard password.
1221 * @param context Context instance
1222 * @param replyTo reply Address
1223 * @throws SecurityException if FonBot does not have device administration permissions
1225 public static void setPassword(final Context context
, final Address replyTo
) throws SecurityException
{
1226 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
1228 dpm
.resetPassword("", 0);
1229 Utils
.sendMessage(context
, replyTo
, password_cleared
);
1233 * Change the keyguard password.
1235 * @param context Context instance
1236 * @param replyTo reply Address
1237 * @param password new password
1238 * @throws SecurityException if FonBot does not have device administration permissions
1240 public static void setPassword(final Context context
, final Address replyTo
, final String password
) throws SecurityException
{
1241 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
1243 dpm
.resetPassword(password
, 0);
1244 Utils
.sendMessage(context
, replyTo
, password_set
);
1248 * Send a text message.
1250 * @param context Context instance
1251 * @param replyTo reply Address
1252 * @param destination destination phone number
1253 * @param text text message contents
1255 public static void sms(final Context context
, final Address replyTo
, final String destination
, final String text
){
1256 final SmsManager manager
=SmsManager
.getDefault();
1257 final ArrayList
<String
> messages
=manager
.divideMessage(text
);
1258 if(messages
.size() > 1)
1259 Utils
.sendMessage(context
, replyTo
, message_was_split_into_parts
, Integer
.valueOf(messages
.size()));
1261 final ArrayList
<PendingIntent
> sents
=new ArrayList
<PendingIntent
>(messages
.size());
1262 final ArrayList
<PendingIntent
> delivereds
=new ArrayList
<PendingIntent
>(messages
.size());
1264 final String name
=Utils
.callerId(context
, destination
);
1265 final String fullDestination
;
1267 fullDestination
=destination
;
1269 fullDestination
=destination
+" ("+name
+")";
1271 for(int i
=0;i
<messages
.size();i
++){
1272 final Intent sent
=new Intent(context
,SmsStatusReceiver
.class);
1273 sent
.putExtra(SmsStatusReceiver
.EXTRA_DESTINATION
, fullDestination
);
1274 sent
.putExtra(SmsStatusReceiver
.EXTRA_PART
, i
+1);
1275 sent
.putExtra(SmsStatusReceiver
.EXTRA_TOTAL
, messages
.size());
1276 sent
.putExtra(SmsStatusReceiver
.EXTRA_REPLY_TO
, replyTo
.toString());
1277 sent
.setAction(SmsStatusReceiver
.SENT_ACTION
+i
);//actions must be unique
1278 sents
.add(PendingIntent
.getBroadcast(context
, 0, sent
, PendingIntent
.FLAG_UPDATE_CURRENT
));
1280 final Intent delivered
=new Intent(context
, SmsStatusReceiver
.class);
1281 delivered
.putExtra(SmsStatusReceiver
.EXTRA_DESTINATION
, fullDestination
);
1282 delivered
.putExtra(SmsStatusReceiver
.EXTRA_PART
, i
+1);
1283 delivered
.putExtra(SmsStatusReceiver
.EXTRA_TOTAL
, messages
.size());
1284 delivered
.putExtra(SmsStatusReceiver
.EXTRA_REPLY_TO
, replyTo
.toString());
1285 delivered
.setAction(SmsStatusReceiver
.DELIVERED_ACTION
+i
);//actions must be unique
1286 delivereds
.add(PendingIntent
.getBroadcast(context
, 0, delivered
, PendingIntent
.FLAG_UPDATE_CURRENT
));
1289 Log
.d(Heavy
.class.getName(), "Sending sms to "+destination
);
1290 manager
.sendMultipartTextMessage(destination
, null, messages
, sents
, delivereds
);
1294 * Send the last SMSes to an Address.
1296 * @param context Context instance
1297 * @param replyTo destination Address
1298 * @param numSms how many SMSes to send
1300 public static void smslog(final Context context
, final Address replyTo
, final int numSms
) {
1301 final String
[] fields
= {"type","address", "body", "date"};
1303 final Cursor cursor
= context
.getContentResolver().query (
1304 Uri
.parse("content://sms"),
1311 if (cursor
.moveToFirst()) {
1313 final String fromNumber
=cursor
.getString(1);
1315 final String name
=Utils
.callerId(context
, Utils
.toNonNull(fromNumber
));
1319 from
=fromNumber
+" ("+name
+')';
1320 final String message
=cursor
.getString(2).replace("\n", "\n ");
1321 final Date date
=new Date(cursor
.getLong(3));
1323 if(cursor
.getInt(0)==1)
1324 Utils
.sendMessage(context
, replyTo
, incoming_message
, from
, message
, date
);
1326 Utils
.sendMessage(context
, replyTo
, outgoing_message
, from
, message
, date
);
1327 } while (cursor
.moveToNext() && cursor
.getPosition() < numSms
);
1333 /** TTS instance, only used by {@link #speak(Context, Address, String)} */
1334 private static TextToSpeech tts
;
1337 * Speak a String using the text-to-speech engine.
1339 * @param context Context instance
1340 * @param replyTo reply Address
1341 * @param text text to speak
1343 public static void speak(final Context context
, final Address replyTo
, final String text
){
1344 tts
=new TextToSpeech(context
, new OnInitListener() {
1346 public void onInit(final int status
) {
1347 if(status
==TextToSpeech
.SUCCESS
){
1348 Utils
.sendMessage(context
, replyTo
, speaking
);
1349 tts
.speak(text
, TextToSpeech
.QUEUE_ADD
, null);
1351 Utils
.sendMessage(context
, replyTo
, tts_engine_not_available
);
1357 * Show a toast notification with the default duration.
1359 * @param context Context instance
1360 * @param replyTo reply Address
1361 * @param text toast text
1363 public static void toast(final Context context
, final Address replyTo
, final String text
){
1364 toast(context
, replyTo
, text
, Toast
.LENGTH_SHORT
);
1368 * Show a toast notification.
1370 * @param context Context instance
1371 * @param replyTo reply Address
1372 * @param text toast text
1373 * @param duration toast duration
1375 public static void toast(final Context context
, final Address replyTo
, final String text
, final int duration
){
1376 Toast
.makeText(context
,text
,duration
).show();
1377 Utils
.sendMessage(context
, replyTo
, toast_shown
);
1381 * Make the phone vibrate for a number of milliseconds.
1383 * @param context Context instance
1384 * @param replyTo reply Address
1385 * @param ms vibrate duration, in milliseconds
1387 public static void vibrate(final Context context
, final Address replyTo
, final long ms
){
1388 final Vibrator v
=(Vibrator
) context
.getSystemService(Context
.VIBRATOR_SERVICE
);
1389 Utils
.sendMessage(context
, replyTo
, vibrating
);
1394 * View an URI in an appropriate activity.
1396 * @param context Context instance
1397 * @param replyTo reply Address
1398 * @param uri URI to view
1400 public static void view(final Context context
, final Address replyTo
, final Uri uri
) {
1402 final Intent intent
=new Intent(Intent
.ACTION_VIEW
);
1403 intent
.setData(uri
);
1404 intent
.setFlags(Intent
.FLAG_FROM_BACKGROUND
|Intent
.FLAG_ACTIVITY_NEW_TASK
);
1405 context
.startActivity(intent
);
1406 Utils
.sendMessage(context
, replyTo
, url_opened
);
1407 } catch(ActivityNotFoundException e
){
1408 Utils
.sendMessage(context
, replyTo
, no_activity_found_for_this_url
);
1409 } catch(Exception e
){
1410 Utils
.sendMessage(context
, replyTo
, invalid_url
);
1415 * Get the current WiFi state.
1417 * @param context Context instance
1418 * @param replyTo reply Address
1420 public static void wifi(final Context context
, final Address replyTo
){
1421 final WifiManager man
=(WifiManager
) context
.getSystemService(Context
.WIFI_SERVICE
);
1422 if(man
.isWifiEnabled())
1423 Utils
.sendMessage(context
, replyTo
, wifi_on
);
1425 Utils
.sendMessage(context
, replyTo
, wifi_off
);
1429 * Set the WiFi state.
1431 * @param context Context instance
1432 * @param replyTo reply Address
1433 * @param on the requested WiFi state
1435 public static void wifi(final Context context
, final Address replyTo
, final boolean on
){
1436 final WifiManager man
=(WifiManager
) context
.getSystemService(Context
.WIFI_SERVICE
);
1437 man
.setWifiEnabled(on
);
1439 Utils
.sendMessage(context
, replyTo
, enabling_wifi
);
1441 Utils
.sendMessage(context
, replyTo
, disabling_wifi
);
1445 * Factory reset the phone, optionally deleting the SD card too.
1447 * @param context Context instance
1448 * @param type {@link Utils.WipeType} instance
1449 * @throws SecurityException if FonBot does not have device administration permissions
1451 @SuppressLint("InlinedApi")
1452 public static void wipe(final Context context
, final WipeType type
) throws SecurityException
{
1453 final DevicePolicyManager dpm
=(DevicePolicyManager
) context
.getSystemService(Context
.DEVICE_POLICY_SERVICE
);
1460 dpm
.wipeData(DevicePolicyManager
.WIPE_EXTERNAL_STORAGE
);
1466 * Disable a Command. The command cannot be used until enabled again with the {@link Utils.Command#ENABLE ENABLE} command.
1468 * @param context Context instance
1469 * @param replyTo reply Address
1470 * @param command Command to disable
1472 public static void disable(final Context context
, final Address replyTo
, final Command command
){
1473 PreferenceManager
.getDefaultSharedPreferences(context
).edit()
1474 .putBoolean(command
+"disabled", true).commit();
1475 Utils
.sendMessage(context
, replyTo
, command_disabled
, command
);
1479 * Re-enable a disabled Command.
1481 * @param context Context instance
1482 * @param replyTo reply Address
1483 * @param command Command to re-enable
1485 public static void enable(final Context context
, final Address replyTo
, final Command command
){
1486 PreferenceManager
.getDefaultSharedPreferences(context
).edit()
1487 .remove(command
+"disabled").commit();
1488 Utils
.sendMessage(context
, replyTo
, command_enabled
, command
);
1493 * Check whether a Command is disabled.
1495 * @param context Context instance
1496 * @param command Command to check
1497 * @return true if the Command is disabled, false otherwise
1499 public static boolean isCommandDisabled(final Context context
, final Command command
){
1500 return PreferenceManager
.getDefaultSharedPreferences(context
).getBoolean(command
+"disabled", false);
1504 * Poll the server for pending commands.
1506 * @param context Context instance
1507 * @param replyTo reply Address
1509 public static void poll(final Context context
, final Address replyTo
) {
1510 Utils
.sendMessage(context
, replyTo
, polling_server
);
1511 Utils
.pollServer(context
);
1515 * Change the server poll interval.
1517 * @param context Context instance
1518 * @param replyTo reply Address
1519 * @param ms server poll interval in milliseconds. If 0, server poll is disabled
1521 public static void poll(final Context context
, final Address replyTo
, final long ms
){
1522 final AlarmManager man
=(AlarmManager
) context
.getSystemService(Context
.ALARM_SERVICE
);
1523 final Intent pollAlarm
=new Intent(context
, FonBotMainService
.class);
1524 pollAlarm
.setAction(FonBotMainService
.ACTION_TRIGGER_POLL
);
1525 final PendingIntent intent
=PendingIntent
.getService(context
, 0, pollAlarm
, 0);
1527 Utils
.unregisterOngoing(context
, toNonNull(OngoingEvent
.POLL
));
1529 Utils
.sendMessage(context
, replyTo
, polling_stopped
);
1531 Utils
.registerOngoing(context
, toNonNull(OngoingEvent
.POLL
));
1532 man
.setRepeating(AlarmManager
.RTC_WAKEUP
, 0, ms
, intent
);
1533 Utils
.sendMessage(context
, replyTo
, polling_every_milliseconds
, Long
.valueOf(ms
));
1538 * Get an instance of {@link ITelephony}
1540 * @param context Context instance
1541 * @return an instance of {@link ITelephony}
1542 * @throws NoSuchMethodException thrown by reflection
1543 * @throws IllegalArgumentException thrown by reflection
1544 * @throws IllegalAccessException thrown by reflection
1545 * @throws InvocationTargetException thrown by reflection
1547 private static ITelephony
getITelephony(final Context context
) throws NoSuchMethodException
, IllegalArgumentException
, IllegalAccessException
, InvocationTargetException
{
1548 final TelephonyManager man
=(TelephonyManager
) context
.getSystemService(Context
.TELEPHONY_SERVICE
);
1549 final Method m
=TelephonyManager
.class.getDeclaredMethod("getITelephony");
1550 m
.setAccessible(true);
1551 return toNonNull((ITelephony
) m
.invoke(man
));
1555 * Hang up the phone.
1557 * @param context Context instance
1558 * @param replyTo reply Address
1560 public static void hangup(final Context context
, final Address replyTo
){
1562 getITelephony(context
).endCall();
1563 } catch(Exception e
){
1564 Utils
.sendMessage(context
, replyTo
, exception_while_hanging_up_call
,
1565 e
.getClass().getName(), e
.getMessage());
1570 * Answer the phone if it is ringing.
1572 * @param context Context instance
1573 * @param replyTo reply Address
1575 public static void answer(final Context context
, final Address replyTo
){
1577 getITelephony(context
).answerRingingCall();
1578 } catch(Exception e
){
1579 Utils
.sendMessage(context
, replyTo
, exception_while_answering_call
,
1580 e
.getClass().getName(), e
.getMessage());
1587 * @param context Context instance
1588 * @param replyTo reply Address
1589 * @param pkg name of the package to launch
1591 public static void launch(final Context context
, final Address replyTo
, final String pkg
){
1592 final Intent intent
=context
.getPackageManager().getLaunchIntentForPackage(pkg
);
1594 Utils
.sendMessage(context
, replyTo
, no_such_package
);
1597 context
.startActivity(intent
);
1598 Utils
.sendMessage(context
, replyTo
, app_launched
);
1602 * Get the mobile data enabled status.
1604 * @param context Context instance
1605 * @param replyTo reply Address
1607 public static void data(final Context context
, final Address replyTo
){
1609 final ConnectivityManager man
=(ConnectivityManager
) context
.getSystemService(Context
.CONNECTIVITY_SERVICE
);
1610 final Method m
=ConnectivityManager
.class.getDeclaredMethod("getMobileDataEnabled");
1611 m
.setAccessible(true);
1612 if(((Boolean
)m
.invoke(man
)).booleanValue())
1613 Utils
.sendMessage(context
, replyTo
, data_on
);
1615 Utils
.sendMessage(context
, replyTo
, data_off
);
1616 } catch(Exception e
){
1617 Utils
.sendMessage(context
, replyTo
, exception_while_determining_data_state
,
1618 e
.getClass().getName(), e
.getMessage());
1623 * Set the mobile data enabled status.
1625 * @param context Context instance
1626 * @param replyTo reply Address
1627 * @param enable whether to enable mobile data
1629 public static void data(final Context context
, final Address replyTo
, final boolean enable
) {
1632 getITelephony(context
).enableDataConnectivity();
1633 Utils
.sendMessage(context
, replyTo
, enabling_data
);
1635 getITelephony(context
).disableDataConnectivity();
1636 Utils
.sendMessage(context
, replyTo
, disabling_data
);
1638 } catch(Exception e
){
1639 Utils
.sendMessage(context
, replyTo
, exception_while_getting_itelephony
,
1640 e
.getClass().getName(), e
.getMessage());
1645 * Get the GPS status.
1647 * @param context Context instance
1648 * @param replyTo reply Address
1650 public static void gps(final Context context
, final Address replyTo
){
1651 if(Secure
.isLocationProviderEnabled(context
.getContentResolver(), LocationManager
.GPS_PROVIDER
))
1652 Utils
.sendMessage(context
, replyTo
, gps_on
);
1654 Utils
.sendMessage(context
, replyTo
, gps_off
);
1658 * Set the GPS status.
1660 * @param context Context instance
1661 * @param replyTo reply Address
1662 * @param enabled requested GPS status
1664 public static void gps(final Context context
, final Address replyTo
, final boolean enabled
) {
1665 Secure
.setLocationProviderEnabled(context
.getContentResolver(), LocationManager
.GPS_PROVIDER
, enabled
);
1667 Utils
.sendMessage(context
, replyTo
, enabling_gps
);
1669 Utils
.sendMessage(context
, replyTo
, disabling_gps
);
1673 * Get the Google location (aka network location) state.
1675 * @param context Context instance
1676 * @param replyTo reply Address
1678 public static void glocation(final Context context
, final Address replyTo
){
1679 if(Secure
.isLocationProviderEnabled(context
.getContentResolver(), LocationManager
.NETWORK_PROVIDER
))
1680 Utils
.sendMessage(context
, replyTo
, network_location_on
);
1682 Utils
.sendMessage(context
, replyTo
, network_location_off
);
1686 * Set the Google location (aka network location) state.
1688 * @param context Context instance
1689 * @param replyTo reply Address
1690 * @param enabled requested Google location state
1692 public static void glocation(final Context context
, final Address replyTo
, final boolean enabled
) {
1693 Secure
.setLocationProviderEnabled(context
.getContentResolver(), LocationManager
.NETWORK_PROVIDER
, enabled
);
1695 Utils
.sendMessage(context
, replyTo
, enabling_network_location
);
1697 Utils
.sendMessage(context
, replyTo
, disabling_network_location
);
1703 * @param context Context instance
1704 * @param replyTo reply Address
1705 * @param reason reboot reason
1707 * @see PowerManager#reboot(String)
1709 public static void reboot(final Context context
, final Address replyTo
, final @Nullable String reason
) {
1710 final PowerManager pm
=(PowerManager
) context
.getSystemService(Context
.POWER_SERVICE
);
1711 Utils
.sendMessage(context
, replyTo
, rebooting
);
1716 * Cancel a notification.
1718 * @param context Context instance
1719 * @param replyTo reply Address
1720 * @param id notification ID
1722 public static void notify(final Context context
, final Address replyTo
, final int id
) {
1723 final NotificationManager man
=(NotificationManager
) context
.getSystemService(Context
.NOTIFICATION_SERVICE
);
1725 Utils
.sendMessage(context
, replyTo
, notification_canceled
);
1729 * Show a notification.
1731 * @param context Context instance
1732 * @param replyTo reply Address
1733 * @param id notification ID
1734 * @param title notificationO title
1735 * @param text notification text
1737 public static void notify(final Context context
, final Address replyTo
, final int id
, final String title
, final String text
) {
1738 final NotificationManager man
=(NotificationManager
) context
.getSystemService(Context
.NOTIFICATION_SERVICE
);
1739 man
.notify(id
, new NotificationCompat
.Builder(context
).
1740 setContentTitle(title
).
1741 setContentText(text
).
1742 setSmallIcon(android
.R
.drawable
.stat_notify_sync_noanim
).
1744 Utils
.sendMessage(context
, replyTo
, notification_shown
);