MainActivity.java 50.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
package com.cnlive.demo.rdupload;

import java.io.File;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;

import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.JSONException;
import org.json.JSONObject;

import android.app.Activity;
import android.app.AlertDialog.Builder;
import android.content.Intent;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;

import com.cnlive.lib.rdupload.network.HttpTask;
import com.ksyun.ks3.exception.Ks3Error;
import com.ksyun.ks3.model.Bucket;
import com.ksyun.ks3.model.Ks3ObjectSummary;
import com.ksyun.ks3.model.ObjectListing;
import com.ksyun.ks3.model.ObjectMetadata;
import com.ksyun.ks3.model.Owner;
import com.ksyun.ks3.model.acl.AccessControlPolicy;
import com.ksyun.ks3.model.acl.CannedAccessControlList;
import com.ksyun.ks3.model.acl.Grant;
import com.ksyun.ks3.model.result.HeadObjectResult;
import com.ksyun.ks3.model.result.ListPartsResult;
import com.ksyun.ks3.services.AuthListener;
import com.ksyun.ks3.services.Ks3Client;
import com.ksyun.ks3.services.Ks3ClientConfiguration;
import com.ksyun.ks3.services.handler.CreateBucketResponceHandler;
import com.ksyun.ks3.services.handler.DeleteBucketResponceHandler;
import com.ksyun.ks3.services.handler.DeleteObjectRequestHandler;
import com.ksyun.ks3.services.handler.GetBucketACLResponceHandler;
import com.ksyun.ks3.services.handler.GetObjectACLResponseHandler;
import com.ksyun.ks3.services.handler.HeadBucketResponseHandler;
import com.ksyun.ks3.services.handler.HeadObjectResponseHandler;
import com.ksyun.ks3.services.handler.ListBucketsResponceHandler;
import com.ksyun.ks3.services.handler.ListObjectsResponseHandler;
import com.ksyun.ks3.services.handler.ListPartsResponseHandler;
import com.ksyun.ks3.services.handler.PutBucketACLResponseHandler;
import com.ksyun.ks3.services.handler.PutObjectACLResponseHandler;
import com.ksyun.ks3.services.handler.PutObjectResponseHandler;
import com.ksyun.ks3.services.request.DeleteObjectRequest;
import com.ksyun.ks3.services.request.ListObjectsRequest;
import com.ksyun.ks3.services.request.PutBucketACLRequest;
import com.ksyun.ks3.services.request.PutObjectACLRequest;

/**
 * 包含一系列资源管理操作Api使用示例
 */
public class MainActivity extends Activity {

    private static final String API = "api";
    private static final String RESULT = "result";
    private Ks3ClientConfiguration configuration;
    private Ks3Client client;
    private TextView resultTv;
    private ListView commandList;
    private String[] command_array;
    private Builder bucketDialogBuilder;
    // Bucket
    public static final int LIST_BUCKETS = 0;
    public static final int CREATE_BUCKET = 1;
    public static final int GET_BUCKET_ACL = 2;
    public static final int PUT_BUCKET_ACL = 3;
    public static final int HEAD_BUCKET = 4;
    public static final int DELETE_BUCKET = 5;
    // Object
    public static final int GET_OBJECT = 6;
    public static final int HEAD_OBJECT = 7;
    public static final int PUT_OBJECT = 8;
    public static final int DELETE_OBJECT = 9;
    public static final int GET_OBJECT_ACL = 10;
    public static final int PUT_OBJECT_ACL = 11;
    public static final int LIST_OBJECTS = 12;
    // Upload
    public static final int UPLOAD = 13;
    // Download
    public static final int DOWNLOAD = 14;
    public static final int LIST_PART = 15;
    public static final int MultiPartUpload = 16;

    private BucketInpuDialog bucketInpuDialog;
    private BucketObjectInpuDialog bucketObjectInpuDialog;
    private HttpTask httpTask;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_dummy);
        setUpKs3Client();
        setUpUserInterface();
    }

    private void setUpUserInterface() {
        bucketInpuDialog = new BucketInpuDialog(MainActivity.this);
        bucketObjectInpuDialog = new BucketObjectInpuDialog(MainActivity.this);
        commandList = (ListView) findViewById(R.id.command_list);
        command_array = getResources().getStringArray(R.array.command_array);
        commandList.setAdapter(new ArrayAdapter<String>(this,
                android.R.layout.simple_list_item_1, command_array));
        commandList.setOnItemClickListener(new OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> arg0, View arg1,
                                    int position, long arg3) {
                switch (position) {
                    case UPLOAD:
                        Intent intent_upload = new Intent(MainActivity.this,
                                UploadActivity.class);
                        startActivity(intent_upload);
                        break;
                    case DOWNLOAD:
                        Intent intent_download = new Intent(MainActivity.this,
                                DownloadActivity.class);
                        startActivity(intent_download);
                        break;
                    case LIST_BUCKETS:
                        listBuckets();
                        break;
                    case CREATE_BUCKET:
                        createBucket();
                        break;
                    case GET_BUCKET_ACL:
                        getBucketACL();
                        break;
                    case PUT_BUCKET_ACL:
                        putBucketACL();
                        break;
                    case HEAD_BUCKET:
                        headBucket();
                        break;
                    case DELETE_BUCKET:
                        deleteBucket();
                        break;
                    case GET_OBJECT:
                        getObject();
                        break;
                    case HEAD_OBJECT:
                        headObject();
                        break;
                    case PUT_OBJECT:
                        putObject();
                        break;
                    case DELETE_OBJECT:
                        deleteObject();
                        break;
                    case GET_OBJECT_ACL:
                        getObjectACL();
                        break;
                    case PUT_OBJECT_ACL:
                        putObjectACL();
                        break;
                    case LIST_OBJECTS:
                        listObjects();
                        break;
                    case LIST_PART:
                        listParts();
                        break;
                    case MultiPartUpload:
                        Intent multi_upload = new Intent(MainActivity.this,
                                MultiUploadActivity.class);
                        startActivity(multi_upload);
                        break;
                    default:
                        break;
                }
            }

        });
    }

    private void putObject() {
        final File file = new File(Environment.getExternalStorageDirectory()
                + File.separator + Constants.TEST_IMG);

        bucketObjectInpuDialog
                .setOnBucketObjectDialogListener(new BucketObjectInpuDialog.OnBucketObjectDialogListener() {
                    @Override
                    public void confirmBucketAndObject(String name, String key) {
                        client.putObject(name, key, file,
                                new PutObjectResponseHandler() {

                                    @Override
                                    public void onTaskSuccess(int statesCode,
                                                              Header[] responceHeaders) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer.append(
                                                "upload file success,file = "
                                                        + Constants.TEST_IMG
                                                        + ",states code = "
                                                        + statesCode).append(
                                                "\n");

                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);

                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API, "put object Result");
                                        intent.putExtras(data);
                                        startActivity(intent);
                                    }

                                    @Override
                                    public void onTaskStart() {

                                    }

                                    @Override
                                    public void onTaskFinish() {

                                    }

                                    @Override
                                    public void onTaskProgress(double progress) {

                                    }

                                    @Override
                                    public void onTaskCancel() {
                                        // TODO Auto-generated method stub

                                    }

                                    @Override
                                    public void onTaskFailure(int statesCode,
                                                              Ks3Error error,
                                                              Header[] responceHeaders,
                                                              String response,
                                                              Throwable paramThrowable) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer.append(
                                                "upload file failure,file = "
                                                        + Constants.TEST_IMG
                                                        + ",states code = "
                                                        + statesCode).append(
                                                "\n").append("response:").append(response);

                                    }
                                });
                    }
                });
        bucketObjectInpuDialog.show();

    }

    protected void listParts() {
        bucketObjectInpuDialog
                .setOnBucketObjectDialogListener(new BucketObjectInpuDialog.OnBucketObjectDialogListener() {
                    @Override
                    public void confirmBucketAndObject(String name, String key) {

                        client.listParts(name, key, Constants.UPLOAD_ID,
                                new ListPartsResponseHandler() {

                                    @Override
                                    public void onSuccess(int statesCode,
                                                          Header[] responceHeaders,
                                                          ListPartsResult listPartsResult) {

                                    }

                                    @Override
                                    public void onFailure(int statesCode,
                                                          Ks3Error error,
                                                          Header[] responceHeaders,
                                                          String response,
                                                          Throwable paramThrowable) {
                                        // TODO Auto-generated method stub

                                    }
                                });
                    }
                });
        bucketObjectInpuDialog.show();

    }

    private void setUpKs3Client() {
        // 使用AuthListener方式鉴权
        if (httpTask == null) httpTask = new HttpTask();
        client = new Ks3Client(new AuthListener() {
            @Override
            public String onCalculateAuth(String s, String s1, String s2, String s3, String s4, String s5) {
                return httpTask.requestTokenToAppServer(s, s1, s2, s3, s4, s5).getAuthorization();
            }
        }, this);
        client.setEndpoint("ks3-cn-beijing.ksyun.com");
        configuration = Ks3ClientConfiguration.getDefaultConfiguration();
        client.setConfiguration(configuration);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    //这块有疑问,没进行操作
    protected void getObject() {
        Toast.makeText(MainActivity.this, "Please See Download Activity",
                Toast.LENGTH_SHORT).show();
    }

    private void headObject() {
        bucketObjectInpuDialog
                .setOnBucketObjectDialogListener(new BucketObjectInpuDialog.OnBucketObjectDialogListener() {
                    @Override
                    public void confirmBucketAndObject(String name, String key) {
                        client.headObject(name, key,
                                new HeadObjectResponseHandler() {
                                    @Override
                                    public void onSuccess(int statesCode,
                                                          Header[] responceHeaders,
                                                          HeadObjectResult headObjectResult) {

                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer
                                                .append("lastModifiedDate      = "
                                                        + headObjectResult
                                                        .getLastmodified())
                                                .append("\n");
                                        stringBuffer.append(
                                                "ETag                  = "
                                                        + headObjectResult
                                                        .getETag())
                                                .append("\n");
                                        ObjectMetadata metadata = headObjectResult
                                                .getObjectMetadata();
                                        stringBuffer.append(metadata);
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);

                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "head object Result");
                                        intent.putExtras(data);
                                        startActivity(intent);

                                    }

                                    @Override
                                    public void onFailure(int statesCode,
                                                          Ks3Error error,
                                                          Header[] responceHeaders,
                                                          String response,
                                                          Throwable paramThrowable) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer.append(
                                                "head object , states code :"
                                                        + statesCode).append(
                                                "\n");
                                        stringBuffer.append("Exception :"
                                                + paramThrowable.toString());
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);
                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "head object Result");
                                        intent.putExtras(data);
                                        startActivity(intent);
                                    }
                                });

                    }
                });
        bucketObjectInpuDialog.show();
    }

    private void getObjectACL() {
        bucketObjectInpuDialog
                .setOnBucketObjectDialogListener(new BucketObjectInpuDialog.OnBucketObjectDialogListener() {
                    @Override
                    public void confirmBucketAndObject(String name, String key) {
                        client.getObjectACL(name, key,
                                new GetObjectACLResponseHandler() {

                                    @Override
                                    public void onSuccess(
                                            int statesCode,
                                            Header[] responceHeaders,
                                            AccessControlPolicy accessControlPolicy) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        Owner owner = accessControlPolicy
                                                .getOwner();
                                        stringBuffer
                                                .append("=======Owner : ID "
                                                        + owner.getId()
                                                        + " ; NAME :"
                                                        + owner.getDisplayName())
                                                .append("\n");
                                        stringBuffer
                                                .append("==============ACL LIST=========");
                                        HashSet<Grant> grants = accessControlPolicy
                                                .getAccessControlList()
                                                .getGrants();
                                        for (Grant grant : grants) {
                                            stringBuffer
                                                    .append(grant.getGrantee()
                                                            .getIdentifier()
                                                            + "========>"
                                                            + grant.getPermission()
                                                            .toString())
                                                    .append("\n");
                                        }
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);

                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "head object Result");
                                        intent.putExtras(data);
                                        startActivity(intent);

                                    }

                                    @Override
                                    public void onFailure(int statesCode,
                                                          Ks3Error error,
                                                          Header[] responceHeaders,
                                                          String response,
                                                          Throwable paramThrowable) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer.append(
                                                "get object ACL FAIL !!!!!!, states code :"
                                                        + statesCode).append(
                                                "\n").append("response:").append(response);
                                        stringBuffer.append("Exception :"
                                                + paramThrowable.toString());
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);
                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "GET Object ACL Result");
                                        intent.putExtras(data);
                                        startActivity(intent);
                                    }
                                });

                    }
                });
        bucketObjectInpuDialog.show();
    }

    private void deleteBucket() {
        bucketInpuDialog.setOnBucketInputListener(new BucketInpuDialog.OnBucketDialogListener() {
            @Override
            public void confirmBucket(String name) {
                client.deleteBucket(name, new DeleteBucketResponceHandler() {

                    @Override
                    public void onSuccess(int statesCode,
                                          Header[] responceHeaders) {
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer
                                .append("Delete bucket success , states code :"
                                        + statesCode);
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "Delete Bucket Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }

                    @Override
                    public void onFailure(int statesCode, Ks3Error error,
                                          Header[] responceHeaders, String response,
                                          Throwable paramThrowable) {
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer
                                .append("Delete bucket failed , states code :"
                                        + statesCode).append("/n").append("responce:").append(response);
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "Delete Bucket Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }
                });
            }
        });
        bucketInpuDialog.show();
    }

    private void putObjectACL() {
        bucketObjectInpuDialog
                .setOnBucketObjectDialogListener(new BucketObjectInpuDialog.OnBucketObjectDialogListener() {
                    @Override
                    public void confirmBucketAndObject(String name, String key) {
                        PutObjectACLRequest request = new PutObjectACLRequest(
                                name, key);
                        CannedAccessControlList cannedList = CannedAccessControlList.PublicRead;
                        // AccessControlList acList = new AccessControlList();

                        // GranteeId grantee = new GranteeId();
                        // grantee.setIdentifier("123456");
                        // grantee.setDisplayName("TESTTEST1");
                        // acList.addGrant(grantee, Permission.Read);
                        // GranteeId grantee1 = new GranteeId();
                        // grantee1.setIdentifier("1235789");
                        // grantee1.setDisplayName("TESTTEST1");
                        // acList.addGrant(grantee1, Permission.FullControl);
                        //
                        // request.setAccessControlList(acList);
                        request.setCannedAcl(cannedList);

                        client.putObjectACL(request,
                                new PutObjectACLResponseHandler() {

                                    @Override
                                    public void onSuccess(int statesCode,
                                                          Header[] responceHeaders) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer
                                                .append("Put Object ACL success , states code :"
                                                        + statesCode);
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);
                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "Put Object ACL Result");
                                        intent.putExtras(data);
                                        startActivity(intent);

                                    }

                                    @Override
                                    public void onFailure(int statesCode,
                                                          Ks3Error error,
                                                          Header[] responceHeaders,
                                                          String response,
                                                          Throwable paramThrowable) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer.append(
                                                "PUT Object ACL FAIL !!!!!!!!!, states code :"
                                                        + statesCode).append(
                                                "\n").append("responce:").append(response);
                                        stringBuffer.append("Exception :"
                                                + paramThrowable.toString());
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);
                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "PUT Object ACL Result");
                                        intent.putExtras(data);
                                        startActivity(intent);
                                    }
                                });
                    }
                });
        bucketObjectInpuDialog.show();
    }

    private void headBucket() {
        bucketInpuDialog.setOnBucketInputListener(new BucketInpuDialog.OnBucketDialogListener() {
            @Override
            public void confirmBucket(String name) {
                client.headBucket(name, new HeadBucketResponseHandler() {
                    @Override
                    public void onSuccess(int statesCode,
                                          Header[] responceHeaders) {
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer
                                .append("head Bucket success , states code :"
                                        + statesCode);
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "head Bucket Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }

                    @Override
                    public void onFailure(int statesCode, Ks3Error error,
                                          Header[] responceHeaders, String response,
                                          Throwable paramThrowable) {
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer.append(
                                "head Bucket Fail, states code :" + statesCode)
                                .append("\n").append("response:").append(response);
                        stringBuffer.append("Exception :"
                                + paramThrowable.toString());
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "head Bucket Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }
                });
            }
        });
        bucketInpuDialog.show();
    }

    private void putBucketACL() {
        bucketInpuDialog.setOnBucketInputListener(new BucketInpuDialog.OnBucketDialogListener() {
            @Override
            public void confirmBucket(String name) {
                PutBucketACLRequest request = new PutBucketACLRequest(name);
                // AccessControlList acl = new AccessControlList();
                // // GranteeUri urigrantee = GranteeUri.AllUsers;
                // // Permission permission = Permission.Read;
                //
                // GranteeEmail email = new GranteeEmail();
                // email.setEmail("guoli@gmail.com");
                // Permission permission = Permission.Read;
                // Grant g = new Grant(email, permission);
                //
                // GranteeUri uirGroup = GranteeUri.AllUsers;
                // Permission uripermission = Permission.Read;
                // Grant g1 = new Grant(uirGroup, uripermission);

                // acl.addGrant(g);
                // acl.addGrant(g1);

                // GranteeId grantee = new GranteeId() ;
                // grantee.setIdentifier("12773456");
                // grantee.setDisplayName("guoliTest222");
                // acl.addGrant(grantee, Permission.Read);

                // GranteeId grantee1 = new GranteeId() ;
                // grantee1.setIdentifier("123005789");
                // grantee1.setDisplayName("guoliTest2D2");
                // acl.addGrant(grantee1, Permission.Write);

                // request.setAccessControlList(acl) ;

                CannedAccessControlList cannedAcl = CannedAccessControlList.PublicReadWrite;
                request.setCannedAcl(cannedAcl);
                // request.setAccessControlList(acl);
                client.putBucketACL(request, new PutBucketACLResponseHandler() {

                    @Override
                    public void onSuccess(int statesCode,
                                          Header[] responceHeaders) {
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer
                                .append("Put Bucket ACL success, states code :"
                                        + statesCode);
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "Put Bucket ACL Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }

                    @Override
                    public void onFailure(int statesCode, Ks3Error error,
                                          Header[] responceHeaders, String response,
                                          Throwable paramThrowable) {
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer.append(
                                "PUT Bucket ACL FAIL, states code :"
                                        + statesCode).append("\n").append("responce :").append(response);
                        stringBuffer.append("Exception :"
                                + paramThrowable.toString());
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "PUT Bucket ACL Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }
                });
            }
        });
        bucketInpuDialog.show();

    }

    private void getBucketACL() {
        bucketInpuDialog.setOnBucketInputListener(new BucketInpuDialog.OnBucketDialogListener() {
            @Override
            public void confirmBucket(String name) {
                client.getBucketACL(name, new GetBucketACLResponceHandler() {

                    @Override
                    public void onSuccess(int statesCode,
                                          Header[] responceHeaders,
                                          AccessControlPolicy accessControlPolicy) {
                        StringBuffer stringBuffer = new StringBuffer();
                        Owner owner = accessControlPolicy.getOwner();
                        stringBuffer.append(
                                "=======Owner : ID " + owner.getId()
                                        + " ; NAME :" + owner.getDisplayName())
                                .append("\n");
                        stringBuffer.append("==============ACL LIST=========");
                        HashSet<Grant> grants = accessControlPolicy
                                .getAccessControlList().getGrants();
                        for (Grant grant : grants) {
                            stringBuffer.append(
                                    grant.getGrantee().getIdentifier()
                                            + "========>"
                                            + grant.getPermission().toString())
                                    .append("\n");
                        }
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "GET BUCKET ACL Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }

                    @Override
                    public void onFailure(int statesCode, Ks3Error error,
                                          Header[] responceHeaders, String response,
                                          Throwable paramThrowable) {
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer.append(
                                "GET BUCKET ACL fail , states code :"
                                        + statesCode).append("\n").append("response = ").append(response);
                        stringBuffer.append("Exception :"
                                + paramThrowable.toString());
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "GET BUCKET ACL Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }
                });
            }
        });
        bucketInpuDialog.show();

    }

    private void deleteObject() {
        bucketObjectInpuDialog
                .setOnBucketObjectDialogListener(new BucketObjectInpuDialog.OnBucketObjectDialogListener() {
                    @Override
                    public void confirmBucketAndObject(String name, String key) {
                        DeleteObjectRequest request = new DeleteObjectRequest(
                                name, key);
                        client.deleteObject(request,
                                new DeleteObjectRequestHandler() {

                                    @Override
                                    public void onSuccess(int statesCode,
                                                          Header[] responceHeaders) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer
                                                .append("Delete success , states code :"
                                                        + statesCode);
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);
                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "Delete Object Result");
                                        intent.putExtras(data);
                                        startActivity(intent);
                                    }

                                    @Override
                                    public void onFailure(int statesCode,
                                                          Ks3Error error,
                                                          Header[] responceHeaders,
                                                          String response,
                                                          Throwable paramThrowable) {
                                        StringBuffer stringBuffer = new StringBuffer();
                                        stringBuffer.append(
                                                "Delete fail , states code :"
                                                        + statesCode).append(
                                                "\n").append("response:").append(response);
                                        stringBuffer.append("Exception :"
                                                + paramThrowable.toString());
                                        Intent intent = new Intent(
                                                MainActivity.this,
                                                RESTAPITestResult.class);
                                        Bundle data = new Bundle();
                                        data.putString(RESULT,
                                                stringBuffer.toString());
                                        data.putString(API,
                                                "Delete Object Result");
                                        intent.putExtras(data);
                                        startActivity(intent);
                                    }
                                });
                    }
                });
        bucketObjectInpuDialog.show();

    }

    private void listObjects() {
        bucketInpuDialog.setOnBucketInputListener(new BucketInpuDialog.OnBucketDialogListener() {
            @Override
            public void confirmBucket(String name) {
                ListObjectsRequest request = new ListObjectsRequest(name);
                // request.setPrefix("android_test/");
                // request.setDelimiter("/");
                client.listObjects(request, new ListObjectsResponseHandler() {

                    @Override
                    public void onSuccess(int statesCode,
                                          Header[] responceHeaders,
                                          ObjectListing objectListing) {
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer.append(
                                "name   =    " + objectListing.getBucketName())
                                .append("\n");
                        stringBuffer.append(
                                "Prefix =    " + objectListing.getPrefix())
                                .append("\n");
                        stringBuffer.append(
                                "Marker =    " + objectListing.getMarker())
                                .append("\n");
                        stringBuffer.append(
                                "Delimiter = " + objectListing.getDelimiter())
                                .append("\n");
                        stringBuffer.append(
                                "IsTruncated = " + objectListing.isTruncated())
                                .append("\n");
                        List<Ks3ObjectSummary> objectSummaries = objectListing
                                .getObjectSummaries();
                        Ks3ObjectSummary objectSummary = null;
                        Owner owner = null;
                        for (int i = 0; i < objectSummaries.size(); i++) {
                            objectSummary = objectSummaries.get(i);
                            owner = objectSummary.getOwner();
                            stringBuffer.append(
                                    "================Object :" + i
                                            + " ===================").append(
                                    "\n");
                            stringBuffer.append(
                                    "     key             ="
                                            + objectSummary.getKey()).append(
                                    "\n");
                            stringBuffer.append(
                                    "     LastModified    ="
                                            + objectSummary.getLastModified())
                                    .append("\n");
                            stringBuffer.append(
                                    "     ETag   =" + objectSummary.getETag())
                                    .append("\n");
                            stringBuffer.append(
                                    "     Size    =" + objectSummary.getSize())
                                    .append("\n");
                            stringBuffer.append(
                                    "     owner.ID    =" + owner.getId())
                                    .append("\n");
                            stringBuffer.append(
                                    "     Size.displayName    ="
                                            + owner.getDisplayName()).append(
                                    "\n");
                            stringBuffer.append(
                                    "     StorageClass    = "
                                            + objectSummary.getStorageClass())
                                    .append("\n");
                        }

                        List<String> commonPrefixes = objectListing
                                .getCommonPrefixes();
                        for (int i = 0; i < commonPrefixes.size(); i++) {
                            stringBuffer.append(
                                    "     commonPrefixes =>" + i + "="
                                            + objectSummary.getStorageClass())
                                    .append("\n");
                        }
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "RESULT for ListObjects");
                        intent.putExtras(data);
                        startActivity(intent);
                    }

                    @Override
                    public void onFailure(int statesCode, Ks3Error error,
                                          Header[] responceHeaders, String response,
                                          Throwable paramThrowable) {
                        // TODO Auto-generated method stub

                    }
                });
            }
        });
        bucketInpuDialog.show();

    }

    private void listBuckets() {
        client.listBuckets(new ListBucketsResponceHandler() {
            @Override
            public void onSuccess(int paramInt, Header[] paramArrayOfHeader,
                                  ArrayList<Bucket> resultList) {
                StringBuffer stringBuffer = new StringBuffer();
                for (Bucket bucket : resultList) {
                    stringBuffer.append(bucket.getName()).append("\n");
                    stringBuffer.append(bucket.getCreationDate()).append("\n");
                    stringBuffer.append(bucket.getOwner().getDisplayName())
                            .append("\n");
                    stringBuffer.append(bucket.getOwner().getId()).append("\n");
                }
                Intent intent = new Intent(MainActivity.this,
                        RESTAPITestResult.class);
                Bundle data = new Bundle();
                data.putString(RESULT, stringBuffer.toString());
                data.putString(API, "List Bucket Result");
                intent.putExtras(data);
                startActivity(intent);
            }

            @Override
            public void onFailure(int statesCode, Ks3Error error,
                                  Header[] responceHeaders, String response,
                                  Throwable paramThrowable) {
                StringBuffer stringBuffer = new StringBuffer();
                stringBuffer.append(
                        "list bucket fail , states code :" + statesCode)
                        .append("\n").append("responce :").append(response);
                stringBuffer.append("Exception :" + paramThrowable.toString());
                Intent intent = new Intent(MainActivity.this,
                        RESTAPITestResult.class);
                Bundle data = new Bundle();
                data.putString(RESULT, stringBuffer.toString());
                data.putString(API, "List Buckets");
                intent.putExtras(data);
                startActivity(intent);
            }
        });
    }

    private void createBucket() {
        bucketInpuDialog.setOnBucketInputListener(new BucketInpuDialog.OnBucketDialogListener() {
            @Override
            public void confirmBucket(String name) {
                client.createBucket(name, new CreateBucketResponceHandler() {
                    @Override
                    public void onSuccess(int statesCode,
                                          Header[] responceHeaders) {
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, "success");
                        data.putString(API, "Create Bucket Result");
                        intent.putExtras(data);
                        startActivity(intent);
                    }

                    @Override
                    public void onFailure(int statesCode, Ks3Error error,
                                          Header[] responceHeaders, String response,
                                          Throwable paramThrowable) {
                        StringBuffer stringBuffer = new StringBuffer();
                        stringBuffer.append(
                                "Delete fail , states code :" + statesCode)
                                .append("\n").append("responce :").append(response);
                        stringBuffer.append("Exception :"
                                + paramThrowable.toString());
                        Intent intent = new Intent(MainActivity.this,
                                RESTAPITestResult.class);
                        Bundle data = new Bundle();
                        data.putString(RESULT, stringBuffer.toString());
                        data.putString(API, "List Buckets");
                        intent.putExtras(data);
                        startActivity(intent);
                    }
                });
            }
        });
        bucketInpuDialog.show();
    }

}