Skip to content

Commit afa0fc2

Browse files
committed
Add a feature to reinitialize synchronization cursor
1 parent f83eebe commit afa0fc2

File tree

6 files changed

+44
-8
lines changed

6 files changed

+44
-8
lines changed

src/main/java/fr/unix_experience/owncloud_sms/activities/remote_account/AccountActionsActivity.java

+29-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
package fr.unix_experience.owncloud_sms.activities.remote_account;
22

3+
import android.content.Context;
4+
import android.content.DialogInterface;
35
import android.content.Intent;
46
import android.os.Bundle;
7+
import android.support.v7.app.AlertDialog;
58
import android.support.v7.app.ActionBar;
69
import android.util.Log;
710
import android.view.MenuItem;
@@ -13,6 +16,7 @@
1316

1417
import fr.unix_experience.android_lib.AppCompatListActivity;
1518
import fr.unix_experience.owncloud_sms.R;
19+
import fr.unix_experience.owncloud_sms.prefs.OCSMSSharedPrefs;
1620

1721
public class AccountActionsActivity extends AppCompatListActivity {
1822
@Override
@@ -31,6 +35,7 @@ protected void onCreate(Bundle savedInstanceState) {
3135

3236
// Create item list
3337
itemList.add(getBaseContext().getString(R.string.restore_all_messages));
38+
itemList.add(getBaseContext().getString(R.string.reinit_sync_cursor));
3439

3540
adp.notifyDataSetChanged();
3641

@@ -57,14 +62,31 @@ protected void onListItemClick(ListView l, View v, int position, long id) {
5762
case 0:
5863
Intent intent = new Intent(this, RestoreMessagesActivity.class);
5964
intent.putExtra("account", _accountName);
60-
try {
61-
startActivity(intent);
62-
} catch (IllegalStateException e) {
63-
Log.e(AccountActionsActivity.TAG, e.getMessage());
64-
}
65+
try {
66+
startActivity(intent);
67+
}
68+
catch (IllegalStateException e) {
69+
Log.e(AccountActionsActivity.TAG, e.getMessage());
70+
}
6571
break;
66-
default:
67-
break; // Unhandled
72+
case 1:
73+
final Context me = this;
74+
new AlertDialog.Builder(this)
75+
.setIcon(android.R.drawable.ic_dialog_alert)
76+
.setTitle(R.string.reinit_sync_cursor)
77+
.setMessage(R.string.reinit_sync_cursor_confirm)
78+
.setPositiveButton(R.string.yes_confirm, new DialogInterface.OnClickListener() {
79+
@Override
80+
public void onClick(DialogInterface dialog, int which) {
81+
(new OCSMSSharedPrefs(me)).setLastMessageDate(0L);
82+
Log.i(AccountActionsActivity.TAG, "Synchronization cursor reinitialized");
83+
}
84+
85+
})
86+
.setNegativeButton(R.string.no_confirm, null)
87+
.show();
88+
break;
89+
default: break; // Unhandled
6890
}
6991
}
7092

src/main/java/fr/unix_experience/owncloud_sms/engine/OCSMSOwnCloudClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ JSONArray getServerPhoneNumbers() throws OCSyncException {
9595
}
9696

9797
public void doPushRequest(JSONArray smsList) throws OCSyncException {
98-
/**
98+
/*
9999
* If we need other API push, set it here
100100
*/
101101
switch (_serverAPIVersion) {

src/main/res/values-en/strings.xml

+4
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,9 @@
153153
<string name="error_make_default_sms_app">Please make this application default SMS application to permit restore your messages. This limitation has been introduced by Android 4.4.</string>
154154
<string name="x_messages_restored">messages restored...</string>
155155
<string name="err_no_connection">No connection available, please ensure you have a valid data connection.</string>
156+
<string name="reinit_sync_cursor">Reinit synchronisation cursor</string>
157+
<string name="reinit_sync_cursor_confirm">Are you sure you want to reinitialize the synchronization cursor ? This can slowdown the next synchronisation if we found many old messages not synced with server.</string>
158+
<string name="yes_confirm">Yes</string>
159+
<string name="no_confirm">No</string>
156160

157161
</resources>

src/main/res/values-es/strings.xml

+2
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,6 @@
177177
<string name="restore_finished">La restauración SMS se ha completado.</string>
178178
<string name="x_messages_restored">mensajes restaurados&#8230;</string>
179179
<string name="err_no_connection">Sin conexión disponible, por favor asegure que tiene una conexión de datos válida.</string>
180+
<string name="yes_confirm">Si</string>
181+
<string name="no_confirm">No</string>
180182
</resources>

src/main/res/values-fr/strings.xml

+4
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,8 @@
177177
<string name="restore_finished">La restauration des SMS est terminée</string>
178178
<string name="x_messages_restored">messages restaurés...</string>
179179
<string name="err_no_connection">Aucune connexion disponible, vérifiez que vous disposez d\'une connexion de données valide.</string>
180+
<string name="reinit_sync_cursor">Réinitialiser le curseur de synchronisation</string>
181+
<string name="reinit_sync_cursor_confirm">Êtes vous sûr de vouloir réinitialiser le curseur de synchronisation ? Cela peut ralentir fortement la prochaine synchronisation si l\'application trouve beaucoup d\'anciens messages non synchronisés avec le serveur.</string>
182+
<string name="yes_confirm">Oui</string>
183+
<string name="no_confirm">Non</string>
180184
</resources>

src/main/res/values/strings.xml

+4
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,8 @@
254254
<string name="restore_finished">SMS restoration is now finished.</string>
255255
<string name="x_messages_restored">messages restored&#8230;</string>
256256
<string name="err_no_connection">No connection available, please ensure you have a valid data connection.</string>
257+
<string name="reinit_sync_cursor">Reinit synchronisation cursor</string>
258+
<string name="reinit_sync_cursor_confirm">Are you sure you want to reinitialize the synchronization cursor ? This can slowdown the next synchronisation if we found many old messages not synced with server.</string>
259+
<string name="yes_confirm">Yes</string>
260+
<string name="no_confirm">No</string>
257261
</resources>

0 commit comments

Comments
 (0)