001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.verify;
016    
017    import com.liferay.portal.kernel.log.Log;
018    import com.liferay.portal.kernel.log.LogFactoryUtil;
019    import com.liferay.portlet.bookmarks.model.BookmarksEntry;
020    import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalServiceUtil;
021    
022    import java.util.List;
023    
024    /**
025     * @author Raymond Augé
026     */
027    public class VerifyBookmarks extends VerifyProcess {
028    
029            @Override
030            protected void doVerify() throws Exception {
031                    List<BookmarksEntry> entries =
032                            BookmarksEntryLocalServiceUtil.getNoAssetEntries();
033    
034                    if (_log.isDebugEnabled()) {
035                            _log.debug(
036                                    "Processing " + entries.size() + " entries with no asset");
037                    }
038    
039                    for (BookmarksEntry entry : entries) {
040                            try {
041                                    BookmarksEntryLocalServiceUtil.updateAsset(
042                                            entry.getUserId(), entry, null, null, null);
043                            }
044                            catch (Exception e) {
045                                    if (_log.isWarnEnabled()) {
046                                            _log.warn(
047                                                    "Unable to update asset for entry " +
048                                                            entry.getEntryId() + ": " + e.getMessage());
049                                    }
050                            }
051                    }
052    
053                    if (_log.isDebugEnabled()) {
054                            _log.debug("Assets verified for entries");
055                    }
056            }
057    
058            private static Log _log = LogFactoryUtil.getLog(VerifyBookmarks.class);
059    
060    }