Search in sources :

Example 6 with PentahoLocale

use of org.pentaho.platform.repository2.locale.PentahoLocale in project pentaho-platform by pentaho.

the class JcrRepositoryFileUtils method nodeToFileOld.

public static RepositoryFile nodeToFileOld(final Session session, final PentahoJcrConstants pentahoJcrConstants, final IPathConversionHelper pathConversionHelper, final ILockHelper lockHelper, final Node node, final boolean loadMaps, IPentahoLocale pentahoLocale) throws RepositoryException {
    if (session.getRootNode().isSame(node)) {
        return getRootFolder(session);
    }
    Serializable id = null;
    String name = null;
    String path = null;
    long fileSize = 0;
    Date created = null;
    String creatorId = null;
    Boolean hidden = RepositoryFile.HIDDEN_BY_DEFAULT;
    Boolean schedulable = RepositoryFile.SCHEDULABLE_BY_DEFAULT;
    Date lastModified = null;
    boolean folder = false;
    boolean versioned = false;
    Serializable versionId = null;
    boolean locked = false;
    String lockOwner = null;
    Date lockDate = null;
    String lockMessage = null;
    String title = null;
    String description = null;
    Boolean aclNode = false;
    Map<String, Properties> localePropertiesMap = null;
    id = getNodeId(session, pentahoJcrConstants, node);
    if (logger.isDebugEnabled()) {
        // $NON-NLS-1$
        logger.debug(String.format("reading file with id '%s' and path '%s'", id, node.getPath()));
    }
    path = pathConversionHelper.absToRel((getAbsolutePath(session, pentahoJcrConstants, node)));
    // if the rel path is / then name the folder empty string instead of its true name (this hides the tenant name)
    // $NON-NLS-1$
    name = RepositoryFile.SEPARATOR.equals(path) ? "" : getNodeName(session, pentahoJcrConstants, node);
    if (isPentahoFolder(pentahoJcrConstants, node)) {
        folder = true;
    }
    // jcr:created nodes have OnParentVersion values of INITIALIZE
    if (node.hasProperty(pentahoJcrConstants.getJCR_CREATED())) {
        Calendar tmpCal = node.getProperty(pentahoJcrConstants.getJCR_CREATED()).getDate();
        if (tmpCal != null) {
            created = tmpCal.getTime();
        }
    }
    // Expensive
    Map<String, Serializable> metadata = getFileMetadata(session, id);
    if (metadata != null) {
        creatorId = (String) metadata.get(PentahoJcrConstants.PHO_CONTENTCREATOR);
        Serializable schedulableValue = metadata.get(RepositoryFile.SCHEDULABLE_KEY);
        if (schedulableValue instanceof String) {
            schedulable = BooleanUtils.toBoolean((String) schedulableValue);
        }
    }
    if (node.hasProperty(pentahoJcrConstants.getPHO_HIDDEN())) {
        hidden = node.getProperty(pentahoJcrConstants.getPHO_HIDDEN()).getBoolean();
    }
    if (node.hasProperty(pentahoJcrConstants.getPHO_FILESIZE())) {
        fileSize = node.getProperty(pentahoJcrConstants.getPHO_FILESIZE()).getLong();
    }
    if (node.hasProperty(pentahoJcrConstants.getPHO_ACLNODE())) {
        aclNode = node.getProperty(pentahoJcrConstants.getPHO_ACLNODE()).getBoolean();
    }
    if (isPentahoFile(pentahoJcrConstants, node)) {
        // pho:lastModified nodes have OnParentVersion values of IGNORE; i.e. they don't exist in frozen nodes
        if (!node.isNodeType(pentahoJcrConstants.getNT_FROZENNODE())) {
            Calendar tmpCal = node.getProperty(pentahoJcrConstants.getPHO_LASTMODIFIED()).getDate();
            if (tmpCal != null) {
                lastModified = tmpCal.getTime();
            }
        }
    }
    // Get default locale if null
    if (pentahoLocale == null) {
        Locale currentLocale = LocaleHelper.getLocale();
        if (currentLocale != null) {
            pentahoLocale = new PentahoLocale(currentLocale);
        } else {
            pentahoLocale = new PentahoLocale();
        }
    }
    // Not needed for content generators and the like
    if (isPentahoHierarchyNode(session, pentahoJcrConstants, node)) {
        if (node.hasNode(pentahoJcrConstants.getPHO_LOCALES())) {
            // Expensive
            localePropertiesMap = getLocalePropertiesMap(session, pentahoJcrConstants, node.getNode(pentahoJcrConstants.getPHO_LOCALES()));
            // [BISERVER-8337] localize title and description
            LocalePropertyResolver lpr = new LocalePropertyResolver(name);
            LocalizationUtil localizationUtil = new LocalizationUtil(localePropertiesMap, pentahoLocale.getLocale());
            title = localizationUtil.resolveLocalizedString(lpr.resolveDefaultTitleKey(), null);
            if (org.apache.commons.lang.StringUtils.isBlank(title)) {
                title = localizationUtil.resolveLocalizedString(lpr.resolveTitleKey(), null);
                if (org.apache.commons.lang.StringUtils.isBlank(title)) {
                    title = localizationUtil.resolveLocalizedString(lpr.resolveNameKey(), title);
                }
            }
            description = localizationUtil.resolveLocalizedString(lpr.resolveDefaultDescriptionKey(), null);
            if (org.apache.commons.lang.StringUtils.isBlank(description)) {
                description = localizationUtil.resolveLocalizedString(lpr.resolveDescriptionKey(), description);
            }
        }
        // found
        if (title == null && node.hasNode(pentahoJcrConstants.getPHO_TITLE())) {
            title = getLocalizedString(session, pentahoJcrConstants, node.getNode(pentahoJcrConstants.getPHO_TITLE()), pentahoLocale);
        }
        if (description == null && node.hasNode(pentahoJcrConstants.getPHO_DESCRIPTION())) {
            description = getLocalizedString(session, pentahoJcrConstants, node.getNode(pentahoJcrConstants.getPHO_DESCRIPTION()), pentahoLocale);
        }
    }
    if (!loadMaps) {
        // remove reference, allow garbage collection
        localePropertiesMap = null;
    }
    versioned = isVersioned(session, pentahoJcrConstants, node);
    if (versioned) {
        versionId = getVersionId(session, pentahoJcrConstants, node);
    }
    locked = isLocked(pentahoJcrConstants, node);
    if (locked) {
        Lock lock = session.getWorkspace().getLockManager().getLock(node.getPath());
        lockOwner = lockHelper.getLockOwner(session, pentahoJcrConstants, lock);
        lockDate = lockHelper.getLockDate(session, pentahoJcrConstants, lock);
        lockMessage = lockHelper.getLockMessage(session, pentahoJcrConstants, lock);
    }
    RepositoryFile file = new RepositoryFile.Builder(id, name).createdDate(created).creatorId(creatorId).lastModificationDate(lastModified).folder(folder).versioned(versioned).path(path).versionId(versionId).fileSize(fileSize).locked(locked).lockDate(lockDate).hidden(hidden).schedulable(schedulable).lockMessage(lockMessage).lockOwner(lockOwner).title(title).description(description).locale(pentahoLocale.toString()).localePropertiesMap(localePropertiesMap).aclNode(aclNode).build();
    return file;
}
Also used : Locale(java.util.Locale) PentahoLocale(org.pentaho.platform.repository2.locale.PentahoLocale) IPentahoLocale(org.pentaho.platform.api.locale.IPentahoLocale) Serializable(java.io.Serializable) Calendar(java.util.Calendar) Properties(java.util.Properties) PentahoLocale(org.pentaho.platform.repository2.locale.PentahoLocale) IPentahoLocale(org.pentaho.platform.api.locale.IPentahoLocale) Date(java.util.Date) Lock(javax.jcr.lock.Lock) RepositoryFile(org.pentaho.platform.api.repository2.unified.RepositoryFile) MutableBoolean(org.apache.commons.lang.mutable.MutableBoolean)

Example 7 with PentahoLocale

use of org.pentaho.platform.repository2.locale.PentahoLocale in project pentaho-platform by pentaho.

the class DefaultUnifiedRepositoryWebService method getAvailableLocalesForFileById.

@Override
public List<PentahoLocale> getAvailableLocalesForFileById(String fileId) {
    List<PentahoLocale> pentahoLocales = new ArrayList<PentahoLocale>();
    List<Locale> locales = repo.getAvailableLocalesForFileById(fileId);
    if (locales != null && !locales.isEmpty()) {
        for (Locale locale : locales) {
            pentahoLocales.add(new PentahoLocale(locale));
        }
    }
    return pentahoLocales;
}
Also used : PentahoLocale(org.pentaho.platform.repository2.locale.PentahoLocale) Locale(java.util.Locale) ArrayList(java.util.ArrayList) PentahoLocale(org.pentaho.platform.repository2.locale.PentahoLocale)

Aggregations

PentahoLocale (org.pentaho.platform.repository2.locale.PentahoLocale)7 ArrayList (java.util.ArrayList)5 Locale (java.util.Locale)5 IPentahoLocale (org.pentaho.platform.api.locale.IPentahoLocale)4 Test (org.junit.Test)3 Matchers.anyString (org.mockito.Matchers.anyString)3 RepositoryFile (org.pentaho.platform.api.repository2.unified.RepositoryFile)3 FileNotFoundException (java.io.FileNotFoundException)2 Properties (java.util.Properties)2 ITenant (org.pentaho.platform.api.mt.ITenant)2 SampleRepositoryFileData (org.pentaho.platform.api.repository2.unified.data.sample.SampleRepositoryFileData)2 RepositoryFileDto (org.pentaho.platform.repository2.unified.webservices.RepositoryFileDto)2 IOException (java.io.IOException)1 Serializable (java.io.Serializable)1 UnsupportedEncodingException (java.io.UnsupportedEncodingException)1 IllegalSelectorException (java.nio.channels.IllegalSelectorException)1 GeneralSecurityException (java.security.GeneralSecurityException)1 InvalidParameterException (java.security.InvalidParameterException)1 Calendar (java.util.Calendar)1 Date (java.util.Date)1