Search in sources :

Example 21 with DatabaseError

use of com.google.firebase.database.DatabaseError in project quickstart-android by firebase.

the class NewPostActivity method submitPost.

private void submitPost() {
    final String title = mTitleField.getText().toString();
    final String body = mBodyField.getText().toString();
    // Title is required
    if (TextUtils.isEmpty(title)) {
        mTitleField.setError(REQUIRED);
        return;
    }
    // Body is required
    if (TextUtils.isEmpty(body)) {
        mBodyField.setError(REQUIRED);
        return;
    }
    // Disable button so there are no multi-posts
    setEditingEnabled(false);
    Toast.makeText(this, "Posting...", Toast.LENGTH_SHORT).show();
    // [START single_value_read]
    final String userId = getUid();
    mDatabase.child("users").child(userId).addListenerForSingleValueEvent(new ValueEventListener() {

        @Override
        public void onDataChange(DataSnapshot dataSnapshot) {
            // Get user value
            User user = dataSnapshot.getValue(User.class);
            // [START_EXCLUDE]
            if (user == null) {
                // User is null, error out
                Log.e(TAG, "User " + userId + " is unexpectedly null");
                Toast.makeText(NewPostActivity.this, "Error: could not fetch user.", Toast.LENGTH_SHORT).show();
            } else {
                // Write new post
                writeNewPost(userId, user.username, title, body);
            }
            // Finish this Activity, back to the stream
            setEditingEnabled(true);
            finish();
        // [END_EXCLUDE]
        }

        @Override
        public void onCancelled(DatabaseError databaseError) {
            Log.w(TAG, "getUser:onCancelled", databaseError.toException());
            // [START_EXCLUDE]
            setEditingEnabled(true);
        // [END_EXCLUDE]
        }
    });
// [END single_value_read]
}
Also used : User(com.google.firebase.quickstart.database.models.User) DatabaseError(com.google.firebase.database.DatabaseError) ValueEventListener(com.google.firebase.database.ValueEventListener) DataSnapshot(com.google.firebase.database.DataSnapshot)

Example 22 with DatabaseError

use of com.google.firebase.database.DatabaseError in project quickstart-android by firebase.

the class PostDetailActivity method onStart.

@Override
public void onStart() {
    super.onStart();
    // Add value event listener to the post
    // [START post_value_event_listener]
    ValueEventListener postListener = new ValueEventListener() {

        @Override
        public void onDataChange(DataSnapshot dataSnapshot) {
            // Get Post object and use the values to update the UI
            Post post = dataSnapshot.getValue(Post.class);
            // [START_EXCLUDE]
            mAuthorView.setText(post.author);
            mTitleView.setText(post.title);
            mBodyView.setText(post.body);
        // [END_EXCLUDE]
        }

        @Override
        public void onCancelled(DatabaseError databaseError) {
            // Getting Post failed, log a message
            Log.w(TAG, "loadPost:onCancelled", databaseError.toException());
            // [START_EXCLUDE]
            Toast.makeText(PostDetailActivity.this, "Failed to load post.", Toast.LENGTH_SHORT).show();
        // [END_EXCLUDE]
        }
    };
    mPostReference.addValueEventListener(postListener);
    // [END post_value_event_listener]
    // Keep copy of post listener so we can remove it when app stops
    mPostListener = postListener;
    // Listen for comments
    mAdapter = new CommentAdapter(this, mCommentsReference);
    mCommentsRecycler.setAdapter(mAdapter);
}
Also used : DatabaseError(com.google.firebase.database.DatabaseError) Post(com.google.firebase.quickstart.database.models.Post) ValueEventListener(com.google.firebase.database.ValueEventListener) DataSnapshot(com.google.firebase.database.DataSnapshot)

Example 23 with DatabaseError

use of com.google.firebase.database.DatabaseError in project pratilipi by Pratilipi.

the class FirebaseApi method updateUserNotificationData.

public static void updateUserNotificationData(Long userId, final List<Long> notifIdListToAdd, final List<Long> notifIdListToRemove, final Async async) {
    initialiseFirebase();
    DatabaseReference databaseReference = FirebaseDatabase.getInstance().getReference().child(DATABASE_NOTIFICATION_TABLE).child(userId.toString());
    databaseReference.runTransaction(new Transaction.Handler() {

        @Override
        public Transaction.Result doTransaction(MutableData mutableData) {
            // Current list of notificationIds with Firebase
            List<Long> notifIdList = new LinkedList<>();
            if (mutableData.getValue() != null) {
                NotificationDB notifDB = mutableData.getValue(NotificationDB.class);
                if (notifDB.getNewNotificationCount() > 0)
                    notifIdList = notifDB.getNotificationIdList();
            }
            // Add/Remove notificationIds
            // Remove ids first to avoid duplicates
            notifIdList.removeAll(notifIdListToAdd);
            notifIdList.removeAll(notifIdListToRemove);
            notifIdList.addAll(notifIdListToAdd);
            // Updating Firebase
            mutableData.setValue(new NotificationDB(notifIdList));
            return Transaction.success(mutableData);
        }

        @Override
        public void onComplete(DatabaseError databaseError, boolean committed, DataSnapshot dataSnapshot) {
            if (committed) {
                // Transaction successful
                async.exec();
            //				} else if( databaseError == null ) { // Transaction aborted
            } else {
                // Transaction failed
                logger.log(Level.SEVERE, "Transaction failed with error code : " + databaseError.getCode());
            }
        }
    });
}
Also used : DatabaseError(com.google.firebase.database.DatabaseError) Transaction(com.google.firebase.database.Transaction) DatabaseReference(com.google.firebase.database.DatabaseReference) List(java.util.List) LinkedList(java.util.LinkedList) MutableData(com.google.firebase.database.MutableData) DataSnapshot(com.google.firebase.database.DataSnapshot)

Example 24 with DatabaseError

use of com.google.firebase.database.DatabaseError in project Robot-Scouter by SUPERCILEX.

the class Scouts method build.

public Task<Map<TeamHelper, List<Scout>>> build() {
    List<Task<Pair<TeamHelper, List<String>>>> scoutIndicesTasks = new ArrayList<>();
    for (TeamHelper helper : mTeamHelpers) {
        TaskCompletionSource<Pair<TeamHelper, List<String>>> scoutIndicesTask = new TaskCompletionSource<>();
        scoutIndicesTasks.add(scoutIndicesTask.getTask());
        getScoutIndicesRef(helper.getTeam().getKey()).addListenerForSingleValueEvent(new ValueEventListener() {

            @Override
            public void onDataChange(DataSnapshot snapshot) {
                AsyncTaskExecutor.Companion.execute(() -> {
                    List<String> scoutKeys = new ArrayList<>();
                    for (DataSnapshot scoutKeyTemplate : snapshot.getChildren()) {
                        scoutKeys.add(scoutKeyTemplate.getKey());
                    }
                    return scoutKeys;
                }).addOnSuccessListener(scoutKeys -> scoutIndicesTask.setResult(Pair.create(helper, scoutKeys)));
            }

            @Override
            public void onCancelled(DatabaseError error) {
                scoutIndicesTask.setException(error.toException());
                FirebaseCrash.report(error.toException());
            }
        });
    }
    for (Task<Pair<TeamHelper, List<String>>> scoutKeysTask : scoutIndicesTasks) {
        scoutKeysTask.addOnSuccessListener(this).addOnFailureListener(this);
    }
    Tasks.whenAll(scoutIndicesTasks).addOnSuccessListener(aVoid -> Tasks.whenAll(mScoutMetricsTasks).addOnSuccessListener(aVoid1 -> mScoutsTask.setResult(mScouts)).addOnFailureListener(this)).addOnFailureListener(this);
    return mScoutsTask.getTask();
}
Also used : Context(android.content.Context) Query(com.google.firebase.database.Query) Metric(com.supercilex.robotscouter.data.model.Metric) DataSnapshot(com.google.firebase.database.DataSnapshot) Pair(android.util.Pair) DatabaseReference(com.google.firebase.database.DatabaseReference) Timer(java.util.Timer) FIREBASE_NAME(com.supercilex.robotscouter.util.ConstantsKt.FIREBASE_NAME) NonNull(android.support.annotation.NonNull) Task(com.google.android.gms.tasks.Task) ChildEventListener(com.google.firebase.database.ChildEventListener) ArrayList(java.util.ArrayList) ValueEventListener(com.google.firebase.database.ValueEventListener) OnFailureListener(com.google.android.gms.tasks.OnFailureListener) Map(java.util.Map) TimerTask(java.util.TimerTask) ConnectivityUtilsKt.isOffline(com.supercilex.robotscouter.util.ConnectivityUtilsKt.isOffline) AsyncTaskExecutor(com.supercilex.robotscouter.util.AsyncTaskExecutor) ConcurrentHashMap(java.util.concurrent.ConcurrentHashMap) METRIC_PARSER(com.supercilex.robotscouter.data.util.ScoutUtilsKt.METRIC_PARSER) FIREBASE_METRICS(com.supercilex.robotscouter.util.ConstantsKt.FIREBASE_METRICS) FirebaseCrash(com.google.firebase.crash.FirebaseCrash) FIREBASE_SCOUTS(com.supercilex.robotscouter.util.ConstantsKt.FIREBASE_SCOUTS) Size(android.support.annotation.Size) TimeUnit(java.util.concurrent.TimeUnit) List(java.util.List) Tasks(com.google.android.gms.tasks.Tasks) OnSuccessListener(com.google.android.gms.tasks.OnSuccessListener) TaskCompletionSource(com.google.android.gms.tasks.TaskCompletionSource) Scout(com.supercilex.robotscouter.data.model.Scout) ScoutUtilsKt.getScoutIndicesRef(com.supercilex.robotscouter.data.util.ScoutUtilsKt.getScoutIndicesRef) DatabaseError(com.google.firebase.database.DatabaseError) CopyOnWriteArrayList(java.util.concurrent.CopyOnWriteArrayList) Task(com.google.android.gms.tasks.Task) TimerTask(java.util.TimerTask) ArrayList(java.util.ArrayList) CopyOnWriteArrayList(java.util.concurrent.CopyOnWriteArrayList) DataSnapshot(com.google.firebase.database.DataSnapshot) TaskCompletionSource(com.google.android.gms.tasks.TaskCompletionSource) DatabaseError(com.google.firebase.database.DatabaseError) ArrayList(java.util.ArrayList) List(java.util.List) CopyOnWriteArrayList(java.util.concurrent.CopyOnWriteArrayList) ValueEventListener(com.google.firebase.database.ValueEventListener) Pair(android.util.Pair)

Example 25 with DatabaseError

use of com.google.firebase.database.DatabaseError in project priend by TakoJ.

the class NewPostActivity method submitPost.

private void submitPost() {
    final String title = mTitleField.getText().toString();
    final String body = mBodyField.getText().toString();
    // Title is required
    if (TextUtils.isEmpty(title)) {
        mTitleField.setError(REQUIRED);
        return;
    }
    // Body is required
    if (TextUtils.isEmpty(body)) {
        mBodyField.setError(REQUIRED);
        return;
    }
    // Disable button so there are no multi-posts
    setEditingEnabled(false);
    Toast.makeText(this, "Posting...", Toast.LENGTH_SHORT).show();
    // [START single_value_read]
    final String userId = mAuth.getCurrentUser().getUid();
    mDatabase.child("users").child(userId).addListenerForSingleValueEvent(new ValueEventListener() {

        @Override
        public void onDataChange(DataSnapshot dataSnapshot) {
            // Get user value
            User user = dataSnapshot.getValue(User.class);
            // [START_EXCLUDE]
            if (user == null) {
                // User is null, error out
                Log.e(TAG, "User " + userId + " is unexpectedly null");
                Toast.makeText(NewPostActivity.this, "Error: could not fetch user.", Toast.LENGTH_SHORT).show();
            } else {
                // Write new post
                writeNewPost(userId, user.username, title, body);
            }
            // Finish this Activity, back to the stream
            setEditingEnabled(true);
            finish();
        // [END_EXCLUDE]
        }

        @Override
        public void onCancelled(DatabaseError databaseError) {
            Log.w(TAG, "getUser:onCancelled", databaseError.toException());
            // [START_EXCLUDE]
            setEditingEnabled(true);
        // [END_EXCLUDE]
        }
    });
// [END single_value_read]
}
Also used : User(com.example.management.models.User) DatabaseError(com.google.firebase.database.DatabaseError) ValueEventListener(com.google.firebase.database.ValueEventListener) DataSnapshot(com.google.firebase.database.DataSnapshot)

Aggregations

DatabaseError (com.google.firebase.database.DatabaseError)42 DataSnapshot (com.google.firebase.database.DataSnapshot)40 ValueEventListener (com.google.firebase.database.ValueEventListener)34 View (android.view.View)14 DatabaseReference (com.google.firebase.database.DatabaseReference)14 LinearLayoutManager (android.support.v7.widget.LinearLayoutManager)12 RecyclerView (android.support.v7.widget.RecyclerView)12 Intent (android.content.Intent)10 Bundle (android.os.Bundle)10 User (com.polito.mad17.madmax.entities.User)10 MutableData (com.google.firebase.database.MutableData)6 Transaction (com.google.firebase.database.Transaction)6 SimpleDateFormat (java.text.SimpleDateFormat)6 TextView (android.widget.TextView)5 Event (com.polito.mad17.madmax.entities.Event)5 ArrayList (java.util.ArrayList)4 HashMap (java.util.HashMap)4 ActionBar (android.support.v7.app.ActionBar)3 MenuItem (android.view.MenuItem)3 ImageView (android.widget.ImageView)3