Java tutorial
/* * Copyright 2015 lifetime. * * 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 ui.visitor; import ui.helper.DataLayout; import ui.data.PersonalDataLayout; import util.ServiceLocator; import com.vaadin.server.StreamResource; import com.vaadin.ui.AbsoluteLayout; import com.vaadin.ui.Image; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.util.Calendar; import java.util.logging.Level; import java.util.logging.Logger; import lifetime.business.logic.UserWithoutPhotoException; import lifetime.business.persistence.Photo; import lifetime.business.persistence.User; import ui.user.UserView; /** * * @author lifetime */ public class VisitorView extends AbsoluteLayout { private final String language; private final VisitorDesk desk; private final VisitorBackground background; private final VisitorActions actions; public VisitorView(String language, Integer userId) { setSizeFull(); this.language = language; background = new VisitorBackground(language, getVisitorImage(userId, language), getUserDataLayout(userId, language)); desk = new VisitorDesk(userId, language); actions = new VisitorActions(userId, language, desk); addComponents(background, desk, actions); } private static Image getVisitorImage(final Integer userId, String language) { return new Image("", new StreamResource(new StreamResource.StreamSource() { @Override public InputStream getStream() { try { Photo photo = ServiceLocator.findLifetimeService().getUserPhoto(userId); return new ByteArrayInputStream(photo.getImage()); } catch (UserWithoutPhotoException ex) { Logger.getLogger(UserView.class.getName()).log(Level.SEVERE, null, ex); return new ByteArrayInputStream(new byte[] {}); } } }, "visitor_" + userId)); } private static DataLayout getUserDataLayout(Integer userId, String language) { Calendar cal = Calendar.getInstance(); cal.set(2015, 6, 26); User u = ServiceLocator.findLifetimeService().getUser(userId); String fullname = u.getFirstname() + " " + u.getLastname(); String email = u.getEmail(); return new PersonalDataLayout(language, fullname, email, u.getBirthdate()); } public String getLanguage() { return language; } public VisitorDesk getDesk() { return desk; } public VisitorBackground getBackground() { return background; } public VisitorActions getActions() { return actions; } }