/* * Copyright (c) 2009-2010 Lockheed Martin Corporation * * 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 org.eurekastreams.server.persistence.mappers.stream; import java.util.ArrayList; import java.util.List; import javax.persistence.Query; import org.eurekastreams.server.domain.stream.StarredActivity; import org.eurekastreams.server.persistence.mappers.DomainMapper; import org.eurekastreams.server.persistence.mappers.cache.CacheKeys; /** * Gets a list of starred activity ids for a given user. */ public class GetStarredActivityIds extends CachedDomainMapper implements DomainMapper<Long, List<Long>> { /** * Looks in the cache for starred activities. If data is not cached, goes to database. * * @param userId * the user id to find followers for. * @return the list of follower ids. */ @SuppressWarnings("unchecked") public List<Long> execute(final Long userId) { String key = CacheKeys.STARRED_BY_PERSON_ID + userId; // Looks for the item in the cache List<Long> keys = getCache().getList(key); // If nothing in cache, gets from database and sets in the cache if (keys == null) { Query q = getEntityManager().createQuery( "from StarredActivity where personId = :id ORDER BY activityId DESC").setParameter("id", userId); List<StarredActivity> results = q.getResultList(); keys = new ArrayList<Long>(); for (StarredActivity f : results) { keys.add(f.getActivityId()); } getCache().setList(key, keys); } return keys; } }