/* * Copyright 2013 two forty four a.m. LLC <http://www.twofortyfouram.com> * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * <http://www.apache.org/licenses/LICENSE-2.0> * * Unless required by applicable law or agreed to in writing, software distributed under the License is * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and limitations under the License. */ package it.angelic.receivers; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.util.Log; import java.util.Locale; import it.angelic.bundle.BundleScrubber; import it.angelic.bundle.PluginBundleManager; import it.angelic.soulissclient.Constants; import it.angelic.soulissclient.TaskerEditActivity; import it.angelic.soulissclient.VoiceCommandActivityNoDisplay; /** * This is the "fire" BroadcastReceiver for a Locale Plug-in setting. * * @see com.twofortyfouram.locale.Intent#ACTION_FIRE_SETTING * @see com.twofortyfouram.locale.Intent#EXTRA_BUNDLE */ public final class TaskerFireReceiver extends BroadcastReceiver { /** * @param context {@inheritDoc}. * @param intent the incoming {@link com.twofortyfouram.locale.Intent#ACTION_FIRE_SETTING} Intent. This * should contain the {@link com.twofortyfouram.locale.Intent#EXTRA_BUNDLE} that was saved by * {@link TaskerEditActivity} and later broadcast by Locale. */ @Override public void onReceive(final Context context, final Intent intent) { /* * Always be strict on input parameters! A malicious third-party app could send a malformed Intent. * http://www.twofortyfouram.com/developer.html * */ Log.i(Constants.TAG, String.format(Locale.US, "Received Tasker intent action %s", intent.getAction())); if (!com.twofortyfouram.locale.Intent.ACTION_FIRE_SETTING.equals(intent.getAction())) { Log.e(Constants.TAG, String.format(Locale.US, "Received unexpected Intent action %s", intent.getAction())); //$NON-NLS-1$ return; } BundleScrubber.scrub(intent); final Bundle bundle = intent.getBundleExtra(com.twofortyfouram.locale.Intent.EXTRA_BUNDLE); BundleScrubber.scrub(bundle); if (PluginBundleManager.isBundleValid(bundle)) { final String message = bundle.getString(PluginBundleManager.BUNDLE_EXTRA_STRING_MESSAGE); Log.w(Constants.TAG, String.format(Locale.US, "Activating Tasker command, message: %s", message)); VoiceCommandActivityNoDisplay.interpretCommand(context, message); //Toast.makeText(context, message, Toast.LENGTH_LONG).show(); } } }