/* * Copyright (C) 2013 Simon Vig Therkildsen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.simonvt.cathode.remote.action.movies; import javax.inject.Inject; import net.simonvt.cathode.api.body.SyncItems; import net.simonvt.cathode.api.entity.SyncResponse; import net.simonvt.cathode.api.service.SyncService; import net.simonvt.cathode.api.util.TimeUtils; import net.simonvt.cathode.provider.MovieDatabaseHelper; import net.simonvt.cathode.remote.CallJob; import net.simonvt.cathode.remote.Flags; import retrofit2.Call; public class CollectMovie extends CallJob<SyncResponse> { @Inject transient SyncService syncService; @Inject transient MovieDatabaseHelper movieHelper; private long traktId; private boolean collected; private String collectedAt; public CollectMovie(long traktId, boolean collected, String collectedAt) { super(Flags.REQUIRES_AUTH); this.traktId = traktId; this.collected = collected; this.collectedAt = collectedAt; } @Override public String key() { return "CollectMovie" + "&traktId=" + traktId + "&collected=" + collected + "&collectedAt=" + collectedAt; } @Override public int getPriority() { return PRIORITY_ACTIONS; } @Override public boolean allowDuplicates() { return true; } @Override public Call<SyncResponse> getCall() { SyncItems items = new SyncItems(); SyncItems.Movie movie = items.movie(traktId); if (collected) { movie.collectedAt(collectedAt); return syncService.collect(items); } else { return syncService.uncollect(items); } } @Override public void handleResponse(SyncResponse response) { final long movieId = movieHelper.getId(traktId); movieHelper.setIsInCollection(movieId, collected, TimeUtils.getMillis(collectedAt)); } }