Commit 253cfec3 authored by CzBiX's avatar CzBiX

add switch profile for Tasker

parent a56fb2b5
......@@ -5,12 +5,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/toolbar_light_dark" />
<Switch android:checked="true"
android:id="@+id/service_switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/toggle_service_state"
android:textSize="18sp"
android:textColor="?android:attr/textColorSecondary"
android:padding="16dp"/>
<FrameLayout
android:id="@+id/fragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Switch android:id="@+id/service_switch"
android:checked="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/toggle_service_state"
android:textSize="18sp"
android:textColor="?android:attr/textColorSecondary"
android:padding="16dp"/>
</FrameLayout>
......@@ -226,4 +226,14 @@
<item>204.0.0.0/6</item>
<item>208.0.0.0/4</item>
</string-array>
<string-array name="tasker_action_name">
<item>Toggle service</item>
<item>Switch profile</item>
</string-array>
<string-array name="tasker_action_value">
<item>toggle_service</item>
<item>switch_profile</item>
</string-array>
</resources>
......@@ -106,6 +106,9 @@
<string name="toggle_service_state">Toggle service state</string>
<string name="save">Save</string>
<string name="turn_service_state">Turn service %s</string>
<string name="no_action_selected">No action was selected</string>
<string name="no_profile_selected">No profile was selected</string>
<string name="switch_profile_to">Switch profile to %s</string>
<string name="state_on">on</string>
<string name="state_off">off</string>
</resources>
......@@ -41,10 +41,14 @@ package com.github.shadowsocks
import android.app.Activity
import android.content.Intent
import android.os.Bundle
import android.support.v4.app.{Fragment, ListFragment}
import android.support.v7.app.AppCompatActivity
import android.support.v7.widget.Toolbar
import android.util.Log
import android.widget.Switch
import android.view.{LayoutInflater, View, ViewGroup}
import android.widget.AdapterView.OnItemClickListener
import android.widget._
import com.github.shadowsocks.database.Profile
import com.github.shadowsocks.helper.TaskerSettings
import com.twofortyfouram.locale.api.{Intent => ApiIntent}
......@@ -53,15 +57,12 @@ import com.twofortyfouram.locale.api.{Intent => ApiIntent}
*/
class TaskerActivity extends AppCompatActivity {
var taskerOption: TaskerSettings = _
var switch: Switch = _
var actionSelected: Boolean = false
override def onCreate(savedInstanceState: Bundle) {
super.onCreate(savedInstanceState)
setContentView(R.layout.layout_tasker)
switch = findViewById(R.id.service_switch).asInstanceOf[Switch]
val toolbar = findViewById(R.id.toolbar).asInstanceOf[Toolbar]
toolbar.setTitle(R.string.app_name)
toolbar.setNavigationIcon(R.drawable.ic_close)
......@@ -75,6 +76,7 @@ class TaskerActivity extends AppCompatActivity {
})
loadSettings()
loadFragment()
}
private def loadSettings() {
......@@ -86,14 +88,134 @@ class TaskerActivity extends AppCompatActivity {
}
taskerOption = TaskerSettings.fromIntent(intent)
}
private def loadFragment() {
actionSelected = !taskerOption.isEmpty
val fragment: Fragment = taskerOption.action match {
case TaskerSettings.ACTION_TOGGLE_SERVICE =>
new ToggleServiceFragment
case TaskerSettings.ACTION_SWITCH_PROFILE =>
new ProfileChoiceFragment
case _ =>
val fragment: ActionChoiceFragment = new ActionChoiceFragment
fragment.onItemClickedListener = (_, _, _, id) => {
taskerOption.action = getResources.getStringArray(R.array.tasker_action_value)(id.toInt)
loadFragment()
actionSelected = true
}
fragment
}
switch.setChecked(taskerOption.is_start)
getSupportFragmentManager.beginTransaction()
.replace(R.id.fragment, fragment)
.commit()
}
private def saveResult() {
taskerOption.is_start = switch.isChecked
setResult(Activity.RESULT_OK, taskerOption.toIntent(this))
finish()
if (actionSelected) {
val fragment: OptionFragment = getSupportFragmentManager.findFragmentById(R.id.fragment).asInstanceOf[OptionFragment]
if (fragment.saveResult()) {
setResult(Activity.RESULT_OK, taskerOption.toIntent(this))
finish()
}
} else {
Toast.makeText(this, R.string.no_action_selected, Toast.LENGTH_SHORT).show()
}
}
private class ActionChoiceFragment extends ListFragment {
var onItemClickedListener: OnItemClickListener = _
override def onActivityCreated(savedInstanceState: Bundle) {
super.onActivityCreated(savedInstanceState)
val adapter = ArrayAdapter.createFromResource(getActivity, R.array.tasker_action_name, android.R.layout.simple_selectable_list_item)
setListAdapter(adapter)
}
override def onListItemClick(l: ListView, v: View, position: Int, id: Long) {
if (onItemClickedListener != null) {
onItemClickedListener.onItemClick(l, v, position, id)
}
}
}
private class ToggleServiceFragment extends Fragment with OptionFragment {
var switch: Switch = _
override def onCreateView(inflater: LayoutInflater, container: ViewGroup, savedInstanceState: Bundle): View = {
val view: View = inflater.inflate(R.layout.layout_tasker_toggle_service, container, false)
switch = view.findViewById(R.id.service_switch).asInstanceOf[Switch]
view
}
override def onActivityCreated(savedInstanceState: Bundle) {
super.onActivityCreated(savedInstanceState)
if (!taskerOption.isEmpty) {
switch.setChecked(taskerOption.isStart)
}
}
override def saveResult() = {
taskerOption.action = TaskerSettings.ACTION_TOGGLE_SERVICE
taskerOption.isStart = switch.isChecked
true
}
}
private class ProfileChoiceFragment extends ListFragment with OptionFragment {
override def onActivityCreated(savedInstanceState: Bundle) {
super.onActivityCreated(savedInstanceState)
import scala.collection.JavaConverters._
val profiles = ShadowsocksApplication.profileManager.getAllProfiles.getOrElse(List.empty)
val adapter = new ArrayAdapter[Profile](getActivity, 0, android.R.id.text1, profiles.asJava) {
override def getView(position: Int, convertView: View, parent: ViewGroup): View = {
val view: TextView = if (convertView == null) {
val inflater = LayoutInflater.from(parent.getContext)
inflater.inflate(android.R.layout.simple_list_item_single_choice, parent, false).asInstanceOf[TextView]
} else {
convertView.asInstanceOf[TextView]
}
view.setText(getItem(position).name)
view
}
}
setListAdapter(adapter)
val listView: ListView = getListView
listView.setChoiceMode(AbsListView.CHOICE_MODE_SINGLE)
if (!taskerOption.isEmpty) {
val index = profiles.indexWhere(_.id == taskerOption.profileId)
if (index > -1) {
listView.setItemChecked(index, true)
}
}
}
override def saveResult() = {
taskerOption.action = TaskerSettings.ACTION_SWITCH_PROFILE
val listView = getListView
val item = listView.getItemAtPosition(listView.getCheckedItemPosition)
if (item == null) {
Toast.makeText(getActivity, R.string.no_profile_selected, Toast.LENGTH_SHORT).show()
false
} else {
taskerOption.profileId = item.asInstanceOf[Profile].id
true
}
}
}
trait OptionFragment extends Fragment {
def saveResult(): Boolean
}
}
......@@ -39,6 +39,7 @@
package com.github.shadowsocks
import android.content.{BroadcastReceiver, Context, Intent}
import android.util.Log
import com.github.shadowsocks.helper.TaskerSettings
import com.github.shadowsocks.utils.Utils
......@@ -49,10 +50,17 @@ class TaskerReceiver extends BroadcastReceiver {
override def onReceive(context: Context, intent: Intent): Unit = {
val settings: TaskerSettings = TaskerSettings.fromIntent(intent)
if (settings.is_start) {
Utils.startSsService(context)
} else {
Utils.stopSsService(context)
settings.action match {
case TaskerSettings.ACTION_TOGGLE_SERVICE =>
if (settings.isStart) {
Utils.startSsService(context)
} else {
Utils.stopSsService(context)
}
case TaskerSettings.ACTION_SWITCH_PROFILE =>
ShadowsocksApplication.switchProfile(settings.profileId)
case _ =>
Log.e(Shadowsocks.TAG, s"unknown tasker action: ${settings.action}")
}
}
}
......@@ -38,13 +38,17 @@
*/
package com.github.shadowsocks.helper
import android.content.{Intent, Context}
import android.content.{Context, Intent}
import android.os.Bundle
import com.github.shadowsocks.R
import android.util.Log
import com.github.shadowsocks.{R, Shadowsocks, ShadowsocksApplication}
import com.twofortyfouram.locale.api.{Intent => ApiIntent}
object TaskerSettings {
val ACTION_UNKNOWN = "unknown"
val ACTION_TOGGLE_SERVICE = "toggle_service"
val ACTION_SWITCH_PROFILE = "switch_profile"
def fromIntent(intent: Intent): TaskerSettings = {
val bundle: Bundle = if (intent.hasExtra(ApiIntent.EXTRA_BUNDLE))
intent.getBundleExtra(ApiIntent.EXTRA_BUNDLE) else Bundle.EMPTY
......@@ -58,16 +62,52 @@ object TaskerSettings {
}
class TaskerSettings(bundle: Bundle) {
val KEY_IS_START = "is_start"
import TaskerSettings._
private val KEY_ACTION = "action"
private val KEY_IS_START = "is_start"
private val KEY_PROFILE_ID = "profile_id"
var action: String = bundle.getString(KEY_ACTION, ACTION_UNKNOWN)
var is_start: Boolean = bundle.getBoolean(KEY_IS_START)
var isStart: Boolean = _
var profileId: Int = _
action match {
case ACTION_TOGGLE_SERVICE =>
isStart = bundle.getBoolean(KEY_IS_START, true)
case ACTION_SWITCH_PROFILE =>
profileId = bundle.getInt(KEY_PROFILE_ID, -1)
assert(profileId != -1, "profile id was wrong")
case _ =>
Log.w(Shadowsocks.TAG, s"unknown tasker action settings: $action")
}
def isEmpty = action == ACTION_UNKNOWN
def toIntent(context: Context): Intent = {
val bundle = new Bundle()
bundle.putBoolean(KEY_IS_START, is_start)
val desc = context.getString(R.string.turn_service_state,
context.getString(if (is_start) R.string.state_on else R.string.state_off))
action match {
case ACTION_TOGGLE_SERVICE =>
bundle.putString(KEY_ACTION, action)
bundle.putBoolean(KEY_IS_START, isStart)
case ACTION_SWITCH_PROFILE =>
bundle.putString(KEY_ACTION, action)
bundle.putInt(KEY_PROFILE_ID, profileId)
}
val desc: String = action match {
case ACTION_TOGGLE_SERVICE =>
context.getString(R.string.turn_service_state,
context.getString(if (isStart) R.string.state_on else R.string.state_off))
case ACTION_SWITCH_PROFILE =>
val profileName = ShadowsocksApplication.profileManager.getProfile(profileId) match {
case Some(p) => p.name
case None => context.getString(R.string.removed)
}
context.getString(R.string.switch_profile_to, profileName)
}
val intent: Intent = new Intent()
intent.putExtra(ApiIntent.EXTRA_STRING_BLURB, desc)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment