X-Git-Url: http://git.joshuawise.com/dumload.git/blobdiff_plain/0763e16da0e84b68e675fbf61342dd1e47755f47..42aa7dfda6c5898856be74d57c8253ac75977d72:/src/com/joshuawise/dumload/Dumload.java diff --git a/src/com/joshuawise/dumload/Dumload.java b/src/com/joshuawise/dumload/Dumload.java index 0905ac9..f3317c4 100644 --- a/src/com/joshuawise/dumload/Dumload.java +++ b/src/com/joshuawise/dumload/Dumload.java @@ -1,18 +1,21 @@ package com.joshuawise.dumload; -import java.io.InputStream; - import android.app.Activity; -import android.app.Service; import android.content.Intent; +import android.content.SharedPreferences; import android.net.Uri; import android.os.Bundle; -import android.os.IBinder; +import android.preference.PreferenceManager; +import android.util.Log; +import android.view.View; +import android.widget.Button; import android.widget.TextView; import android.widget.Toast; -import android.util.Log; public class Dumload extends Activity { + + private SharedPreferences prefs; + /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { @@ -28,27 +31,48 @@ public class Dumload extends Activity { public void onStart() { super.onStart(); + final Dumload thisact = this; + + prefs = PreferenceManager.getDefaultSharedPreferences(this); Intent i = getIntent(); /* i *am* not an intent! */ - if (i.getAction().equals(Intent.ACTION_SEND)) + + if (!i.getAction().equals(Intent.ACTION_SEND)) { - Bundle extras = i.getExtras(); - Uri uri = (Uri)extras.getParcelable(Intent.EXTRA_STREAM); - - Log.e("Dumload", "Got a send -- starting service."); - // Never let an ML programmer touch Java. - android.content.ComponentName cn = getApplicationContext().startService(new Intent().setClass(getApplicationContext(), Uploader.class).setData(uri)); - - if (cn == null) - say("Fuuuuuuuuuck."); - else - Log.e("Dumload", "Started service " + cn.toString() + "."); - - TextView tv = (TextView)findViewById(R.id.suckit); - tv.setText("Action was send: "+uri.toString()); - } else { - TextView tv = (TextView)findViewById(R.id.suckit); - tv.setText("Action was something else"); +// say("Unknown intent for dumload"); +// this.finish(); + Intent pi = new Intent(this, Preferences.class); + startActivity(pi); + return; } + + Bundle extras = i.getExtras(); + final Uri uri = (Uri)extras.getParcelable(Intent.EXTRA_STREAM); + + Log.e("Dumload", "Got a send -- starting service."); + + Button go = (Button)findViewById(R.id.go); + go.setOnClickListener(new View.OnClickListener() { + public void onClick(View v) { + String s = ((TextView) findViewById(R.id.entry)).getText().toString(); + android.content.ComponentName cn = getApplicationContext() + .startService(new Intent() + .setClass(getApplicationContext(), Uploader.class) + .setData(uri) + .putExtra("com.joshuawise.dumload.dest", s)); + if (cn == null) + say("Failed to start uploader."); + else + Log.e("Dumload", "Started service " + cn.toString() + "."); + finish(); + } + }); + + String uribase = uri.toString(); + + + ((TextView) findViewById(R.id.suckit)).setText("Where to?"); + ((TextView) findViewById(R.id.entry)).setText(prefs.getString("defaultUploadPath", "/var/www/") + uribase.substring(uribase.lastIndexOf("/") + 1) + ".jpg"); + } } \ No newline at end of file