/* * Copyright (c) 2014 Washington State Department of Transportation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> * */ package gov.wa.wsdot.mobile.client.activities.camera; import com.google.code.gwt.database.client.GenericRow; import com.google.code.gwt.database.client.service.DataServiceException; import com.google.code.gwt.database.client.service.ListCallback; import com.google.code.gwt.database.client.service.VoidCallback; import com.google.gwt.place.shared.Place; import com.google.gwt.user.client.Timer; import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.gwt.user.client.ui.AcceptsOneWidget; import com.google.web.bindery.event.shared.EventBus; import com.googlecode.mgwt.mvp.client.MGWTAbstractActivity; import com.googlecode.mgwt.ui.client.widget.panel.pull.PullArrowStandardHandler; import com.googlecode.mgwt.ui.client.widget.panel.pull.PullArrowStandardHandler.PullActionHandler; import gov.wa.wsdot.mobile.client.ClientFactory; import gov.wa.wsdot.mobile.client.event.ActionEvent; import gov.wa.wsdot.mobile.client.event.ActionNames; import gov.wa.wsdot.mobile.client.plugins.accessibility.Accessibility; import gov.wa.wsdot.mobile.client.service.WSDOTContract.CamerasColumns; import gov.wa.wsdot.mobile.client.service.WSDOTDataService; import gov.wa.wsdot.mobile.shared.CameraItem; import java.util.ArrayList; import java.util.List; public class CameraActivity extends MGWTAbstractActivity implements CameraView.Presenter { private final ClientFactory clientFactory; private CameraView view; private EventBus eventBus; private WSDOTDataService dbService; private String cameraId; private Accessibility accessibility; private static List<CameraItem> cameraItems = new ArrayList<CameraItem>(); private boolean isStarred = false; public CameraActivity(ClientFactory clientFactory) { this.clientFactory = clientFactory; } @Override public void start(AcceptsOneWidget panel, EventBus eventBus) { view = clientFactory.getCameraView(); dbService = clientFactory.getDbService(); accessibility = clientFactory.getAccessibility(); this.eventBus = eventBus; view.setPresenter(this); Place place = clientFactory.getPlaceController().getWhere(); if (place instanceof CameraPlace) { CameraPlace cameraPlace = (CameraPlace) place; cameraId = cameraPlace.getId(); } PullArrowStandardHandler headerHandler = new PullArrowStandardHandler( view.getCameraPullHeader(), view.getCameraPullPanel()); view.getCameraPullHeader().setHTML("pull down"); headerHandler.setErrorText("Error"); headerHandler.setLoadingText("Loading"); headerHandler.setNormalText("pull down"); headerHandler.setPulledText("release to load"); headerHandler.setPullActionHandler(new PullActionHandler() { @Override public void onPullAction(final AsyncCallback<Void> callback) { new Timer() { @Override public void run() { getCamera(view, cameraId); view.cameraRefresh(); callback.onSuccess(null); } }.schedule(1); } }); PullArrowStandardHandler headerHandler2 = new PullArrowStandardHandler( view.getVideoPullHeader(), view.getVideoPullPanel()); view.getVideoPullHeader().setHTML("pull down"); headerHandler2.setErrorText("Error"); headerHandler2.setLoadingText("Loading"); headerHandler2.setNormalText("pull down"); headerHandler2.setPulledText("release to load"); headerHandler2.setPullActionHandler(new PullActionHandler() { @Override public void onPullAction(final AsyncCallback<Void> callback) { new Timer() { @Override public void run() { getCamera(view, cameraId); view.videoRefresh(); callback.onSuccess(null); } }.schedule(1); } }); view.setCameraHeaderPullHandler(headerHandler); view.setVideoHeaderPullHandler(headerHandler2); getCamera(view, cameraId); panel.setWidget(view); accessibility.postScreenChangeNotification(); } private void getCamera(final CameraView view, String cameraId) { dbService.getCamera(cameraId, new ListCallback<GenericRow>() { @Override public void onFailure(DataServiceException error) { } @Override public void onSuccess(List<GenericRow> result) { cameraItems.clear(); CameraItem c = null; String url = null; String cameraName = null; int slashIndex; int dotIndex; int hasVideo = 0; for (GenericRow camera: result) { c = new CameraItem(); url = camera.getString(CamerasColumns.CAMERA_URL); slashIndex = url.lastIndexOf("/"); dotIndex = url.lastIndexOf("."); cameraName = url.substring(slashIndex + 1, dotIndex); hasVideo = camera.getInt(CamerasColumns.CAMERA_HAS_VIDEO); c.setCameraId(camera.getInt(CamerasColumns.CAMERA_ID)); c.setTitle(camera.getString(CamerasColumns.CAMERA_TITLE)); c.setImageUrl(url); c.setHasVideo(hasVideo); c.setIsStarred(camera.getInt(CamerasColumns.CAMERA_IS_STARRED)); cameraItems.add(c); } isStarred = cameraItems.get(0).getIsStarred() != 0; view.toggleStarButton(isStarred); view.renderCamera(cameraItems); view.cameraRefresh(); if (hasVideo == 0) { try { view.removeTab(1); } catch (IndexOutOfBoundsException e) { // Tab has already been removed. Move along. } } else { c.setVideoUrl("http://images.wsdot.wa.gov/nwvideo/" + cameraName + ".mp4"); view.renderVideo(cameraItems); view.videoRefresh(); } } }); } @Override public void onStop() { view.setPresenter(null); } @Override public void onBackButtonPressed() { ActionEvent.fire(eventBus, ActionNames.BACK); } @Override public void onStarButtonPressed() { if (isStarred) { cameraItems.get(0).setIsStarred(0); isStarred = false; } else { cameraItems.get(0).setIsStarred(1); isStarred = true; } dbService.updateStarredCameras(cameraItems, new VoidCallback() { @Override public void onFailure(DataServiceException error) { } @Override public void onSuccess() { view.toggleStarButton(isStarred); } }); } }