Search in sources :

Example 1 with RestfulCollection

use of org.apache.shindig.protocol.RestfulCollection in project liferay-ide by liferay.

the class LiferayActivityService method doGetActivities.

public RestfulCollection<Activity> doGetActivities(Set<UserId> userIds, GroupId groupId, String appId, Set<String> fields, CollectionOptions collectionOptions, SecurityToken securityToken) throws Exception {
    ThemeDisplay themeDisplay = getThemeDisplay(securityToken);
    List<Activity> activities = new ArrayList<Activity>();
    for (UserId userId : userIds) {
        long userIdLong = GetterUtil.getLong(userId.getUserId(securityToken));
        List<Activity> personActivities = getActivities(themeDisplay, userIdLong);
        activities.addAll(personActivities);
    }
    return new RestfulCollection<Activity>(activities, collectionOptions.getFirst(), activities.size(), collectionOptions.getMax());
}
Also used : UserId(org.apache.shindig.social.opensocial.spi.UserId) ArrayList(java.util.ArrayList) SocialActivity(com.liferay.portlet.social.model.SocialActivity) Activity(org.apache.shindig.social.opensocial.model.Activity) RestfulCollection(org.apache.shindig.protocol.RestfulCollection) ThemeDisplay(com.liferay.portal.theme.ThemeDisplay)

Example 2 with RestfulCollection

use of org.apache.shindig.protocol.RestfulCollection in project liferay-ide by liferay.

the class LiferayActivityService method doGetActivities.

public RestfulCollection<Activity> doGetActivities(UserId userId, GroupId groupId, String appId, Set<String> fields, CollectionOptions collectionOptions, Set<String> activityIds, SecurityToken securityToken) throws Exception {
    ThemeDisplay themeDisplay = getThemeDisplay(securityToken);
    long userIdLong = GetterUtil.getLong(userId.getUserId(securityToken));
    List<Activity> activities = getActivities(themeDisplay, userIdLong);
    return new RestfulCollection<Activity>(activities, collectionOptions.getFirst(), activities.size(), collectionOptions.getMax());
}
Also used : SocialActivity(com.liferay.portlet.social.model.SocialActivity) Activity(org.apache.shindig.social.opensocial.model.Activity) RestfulCollection(org.apache.shindig.protocol.RestfulCollection) ThemeDisplay(com.liferay.portal.theme.ThemeDisplay)

Example 3 with RestfulCollection

use of org.apache.shindig.protocol.RestfulCollection in project liferay-ide by liferay.

the class LiferayAlbumService method doGetAlbums.

protected RestfulCollection<Album> doGetAlbums(UserId userId, String appId, Set<String> fields, CollectionOptions collectionOptions, Set<String> albumIds, SecurityToken securityToken) throws Exception {
    List<Album> albums = new ArrayList<Album>();
    for (String albumId : albumIds) {
        Folder folder = DLAppServiceUtil.getFolder(GetterUtil.getLong(albumId));
        Album album = toAlbum(folder, fields, securityToken);
        albums.add(album);
    }
    return new RestfulCollection<Album>(albums, collectionOptions.getFirst(), albums.size(), collectionOptions.getMax());
}
Also used : ArrayList(java.util.ArrayList) Album(org.apache.shindig.social.opensocial.model.Album) RestfulCollection(org.apache.shindig.protocol.RestfulCollection) Folder(com.liferay.portal.kernel.repository.model.Folder) DLFolder(com.liferay.portlet.documentlibrary.model.DLFolder)

Example 4 with RestfulCollection

use of org.apache.shindig.protocol.RestfulCollection in project liferay-ide by liferay.

the class LiferayAlbumService method doGetAlbums.

protected RestfulCollection<Album> doGetAlbums(Set<UserId> userIds, GroupId groupId, String appId, Set<String> fields, CollectionOptions collectionOptions, SecurityToken securityToken) throws Exception {
    List<Album> albums = new ArrayList<Album>();
    for (UserId userId : userIds) {
        String userIdString = userId.getUserId(securityToken);
        long userIdLong = GetterUtil.getLong(userIdString);
        User user = UserLocalServiceUtil.getUserById(userIdLong);
        if (!ShindigUtil.isValidUser(user)) {
            continue;
        }
        List<Folder> folders = new ArrayList<Folder>();
        GroupId.Type groupIdType = groupId.getType();
        if (groupIdType.equals(GroupId.Type.all) || groupIdType.equals(GroupId.Type.friends) || groupIdType.equals(GroupId.Type.groupId)) {
            List<User> socialUsers = UserLocalServiceUtil.getSocialUsers(user.getUserId(), SocialRelationConstants.TYPE_BI_FRIEND, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
            for (User socialUser : socialUsers) {
                Group group = socialUser.getGroup();
                List<Folder> friendFolders = DLAppServiceUtil.getFolders(group.getGroupId(), DLFolderConstants.DEFAULT_PARENT_FOLDER_ID);
                folders.addAll(friendFolders);
            }
        } else if (groupIdType.equals(GroupId.Type.self)) {
            Group group = user.getGroup();
            folders = DLAppServiceUtil.getFolders(group.getGroupId(), DLFolderConstants.DEFAULT_PARENT_FOLDER_ID);
        }
        for (Folder folder : folders) {
            Album album = toAlbum(folder, fields, securityToken);
            albums.add(album);
        }
    }
    return new RestfulCollection<Album>(albums, collectionOptions.getFirst(), albums.size(), collectionOptions.getMax());
}
Also used : Group(com.liferay.portal.model.Group) User(com.liferay.portal.model.User) ArrayList(java.util.ArrayList) Album(org.apache.shindig.social.opensocial.model.Album) RestfulCollection(org.apache.shindig.protocol.RestfulCollection) Folder(com.liferay.portal.kernel.repository.model.Folder) DLFolder(com.liferay.portlet.documentlibrary.model.DLFolder) GroupId(org.apache.shindig.social.opensocial.spi.GroupId) UserId(org.apache.shindig.social.opensocial.spi.UserId)

Example 5 with RestfulCollection

use of org.apache.shindig.protocol.RestfulCollection in project liferay-ide by liferay.

the class LiferayPersonService method doGetPeople.

protected RestfulCollection<Person> doGetPeople(Set<UserId> userIds, GroupId groupId, CollectionOptions collectionOptions, Set<String> fields, SecurityToken securityToken) throws Exception {
    List<Person> people = new ArrayList<Person>();
    for (UserId userId : userIds) {
        Person person = null;
        String userIdString = userId.getUserId(securityToken);
        GroupId.Type groupIdType = groupId.getType();
        if (groupIdType.equals(GroupId.Type.all) || groupIdType.equals(GroupId.Type.friends) || groupIdType.equals(GroupId.Type.groupId)) {
            long userIdLong = GetterUtil.getLong(userIdString);
            User user = UserLocalServiceUtil.getUserById(userIdLong);
            List<User> friends = UserLocalServiceUtil.getSocialUsers(user.getUserId(), SocialRelationConstants.TYPE_BI_FRIEND, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
            for (User friend : friends) {
                person = getUserPerson(friend, fields, securityToken);
                people.add(person);
            }
        } else if (groupIdType.equals(GroupId.Type.self)) {
            person = doGetPerson(userId, fields, securityToken);
            people.add(person);
        }
    }
    return new RestfulCollection<Person>(people, collectionOptions.getFirst(), people.size(), collectionOptions.getMax());
}
Also used : User(com.liferay.portal.model.User) UserId(org.apache.shindig.social.opensocial.spi.UserId) ArrayList(java.util.ArrayList) RestfulCollection(org.apache.shindig.protocol.RestfulCollection) Person(org.apache.shindig.social.opensocial.model.Person) GroupId(org.apache.shindig.social.opensocial.spi.GroupId)

Aggregations

RestfulCollection (org.apache.shindig.protocol.RestfulCollection)7 ArrayList (java.util.ArrayList)6 User (com.liferay.portal.model.User)4 UserId (org.apache.shindig.social.opensocial.spi.UserId)4 Group (com.liferay.portal.model.Group)3 GroupId (org.apache.shindig.social.opensocial.spi.GroupId)3 FileEntry (com.liferay.portal.kernel.repository.model.FileEntry)2 Folder (com.liferay.portal.kernel.repository.model.Folder)2 ThemeDisplay (com.liferay.portal.theme.ThemeDisplay)2 DLFileEntry (com.liferay.portlet.documentlibrary.model.DLFileEntry)2 DLFolder (com.liferay.portlet.documentlibrary.model.DLFolder)2 SocialActivity (com.liferay.portlet.social.model.SocialActivity)2 Activity (org.apache.shindig.social.opensocial.model.Activity)2 Album (org.apache.shindig.social.opensocial.model.Album)2 MediaItem (org.apache.shindig.social.opensocial.model.MediaItem)2 Type (org.apache.shindig.social.opensocial.model.MediaItem.Type)2 Person (org.apache.shindig.social.opensocial.model.Person)1