summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/java/org/fox/ttcomics2/sync/SyncFolderService.java
blob: 75120d370062695e587828b490bfb105ecb1a6b6 (plain)
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
package org.fox.ttcomics2.sync;

import android.annotation.SuppressLint;
import android.app.Service;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Binder;
import android.os.IBinder;
import android.util.Log;

import org.fox.ttcomics2.BuildConfig;
import org.fox.ttcomics2.CommonActivity;
import org.fox.ttcomics2.DatabaseHelper;

import java.io.File;
import java.io.IOException;
import java.net.HttpURLConnection;

public class SyncFolderService extends Service {
    private final String TAG = this.getClass().getSimpleName();

    public final static String INTENT_ACTION_FILE_PROCESSED = "org.fox.ttcomics2.intent.action.FileProcessed";
    public final static String INTENT_ACTION_SCAN_COMPLETE = "org.fox.ttcomics2.intent.action.ScanComplete";

    private DatabaseHelper m_databaseHelper;
    private final IBinder m_binder = new LocalBinder();

    public class LocalBinder extends Binder {
        SyncFolderService getService() {
            return SyncFolderService.this;
        }
    }

    @Override
    public void onCreate() {
        super.onCreate();

        m_databaseHelper = DatabaseHelper.getInstance(this);
    }

    @Override
    public IBinder onBind(Intent intent) {
        return m_binder;
    }

    @Override
    public void onStart(Intent intent, int startId) {
        String baseDir = intent.getExtras().getString("baseDir");

        @SuppressLint("StaticFieldLeak") AsyncTask<String, Integer, Integer> task = new AsyncTask<String, Integer, Integer>() {
            @Override
            protected Integer doInBackground(String... params) {
                File rootDir = new File(params[0]);

                if (rootDir.exists() && rootDir.isDirectory()) {

                    int index = 0;
                    int count = rootDir.listFiles().length;

                    for (File file : rootDir.listFiles()) {
                        ++index;

                        Log.d(TAG, "file=" + file.getAbsolutePath());

                        SyncClient m_syncClient = new SyncClient();

                        String googleAccount = CommonActivity.getSyncAccount(getApplicationContext());

                        if (googleAccount != null) {
                            m_syncClient.setOwner(googleAccount);
                        } else if (BuildConfig.DEBUG) {
                            m_syncClient.setOwner("TEST-ACCOUNT");
                        }

                        HttpURLConnection conn = m_syncClient.doSyncHttpRequest("get", CommonActivity.sha1(file.getName()));

                        try {
                            if (conn != null && conn.getResponseCode() == HttpURLConnection.HTTP_OK) {
                                String result = m_syncClient.readHttpResponse(conn);

                                if (result != null) {
                                    //Log.d(TAG, "GOT=" + result);

                                    int position = Integer.valueOf(result);

                                    if (position > 0) {

                                        if (position > m_databaseHelper.getLastPosition(file.getAbsolutePath())) {
                                            m_databaseHelper.setLastPosition(file.getAbsolutePath(), position);
                                        }
                                    }

                                }

                                Thread.sleep(250);
                            }
                        } catch (IOException e) {
                            e.printStackTrace();
                        } catch (Exception e) {
                            e.printStackTrace();
                        }

                        Intent broadcast = new Intent();
                        broadcast.setAction(INTENT_ACTION_FILE_PROCESSED);
                        broadcast.putExtra("index", index);
                        broadcast.putExtra("count", count);
                        broadcast.addCategory(Intent.CATEGORY_DEFAULT);
                        sendBroadcast(broadcast);
                    }
                }

                Intent broadcast = new Intent();
                broadcast.setAction(INTENT_ACTION_SCAN_COMPLETE);
                broadcast.addCategory(Intent.CATEGORY_DEFAULT);
                sendBroadcast(broadcast);

                stopSelf();

                return null;
            }
        };

        task.execute(baseDir);
    }

}