All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flowcentraltech.flowcentral.system.web.controllers.UIOptionsController Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
/*
 * Copyright 2021-2024 FlowCentral Technologies Limited.
 * 
 * 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 com.flowcentraltech.flowcentral.system.web.controllers;

import com.flowcentraltech.flowcentral.common.business.FileAttachmentProvider;
import com.flowcentraltech.flowcentral.common.constants.FileAttachmentCategoryType;
import com.flowcentraltech.flowcentral.common.data.Attachment;
import com.flowcentraltech.flowcentral.system.constants.SystemFileResourceConstants;
import com.flowcentraltech.flowcentral.system.constants.SystemModuleSysParamConstants;
import com.tcdng.unify.core.UnifyException;
import com.tcdng.unify.core.annotation.Component;
import com.tcdng.unify.core.annotation.Configurable;
import com.tcdng.unify.core.annotation.UplBinding;
import com.tcdng.unify.core.constant.FileAttachmentType;
import com.tcdng.unify.web.annotation.Action;
import com.tcdng.unify.web.annotation.ResultMapping;
import com.tcdng.unify.web.annotation.ResultMappings;
import com.tcdng.unify.web.constant.ReadOnly;
import com.tcdng.unify.web.constant.ResetOnWrite;
import com.tcdng.unify.web.constant.Secured;

/**
 * User interface options controller.
 * 
 * @author FlowCentral Technologies Limited
 * @since 1.0
 */
@Component("/system/uioptions")
@UplBinding("web/system/upl/uioptionspage.upl")
@ResultMappings({ @ResultMapping(name = "refreshlogin",
        response = { "!refreshpanelresponse panels:$l{frmHeaderImgPanel frmBackImgPanel}" }) })
public class UIOptionsController extends AbstractSystemPageController {

    @Configurable
    private FileAttachmentProvider fileAttachmentProvider;

    public UIOptionsController() {
        super(UIOptionsPageBean.class, Secured.TRUE, ReadOnly.FALSE, ResetOnWrite.FALSE);
    }

    @Action
    public String saveUIOptions() throws UnifyException {
        UIOptionsPageBean pageBean = getPageBean();
        system().setSysParameterValue(SystemModuleSysParamConstants.SYSTEM_LOGINPAGE_TITLE,
                pageBean.getLoginPageTitle());
        system().setSysParameterValue(SystemModuleSysParamConstants.SYSTEM_LOGINPAGE_SUBTITLE,
                pageBean.getLoginPageSubtitle());
        saveFileResource(FileAttachmentType.IMAGE, SystemFileResourceConstants.LOGIN_HEADER_IMAGE_RESOURCE,
                pageBean.getLoginHeaderImage());
        saveFileResource(FileAttachmentType.IMAGE, SystemFileResourceConstants.LOGIN_BACK_IMAGE_RESOURCE,
                pageBean.getLoginBackImage());
        hintUser("$m{uioptionspage.hint.optionssaved}");
        return noResult();
    }

    @Action
    public String clearLoginImage() throws UnifyException {
        UIOptionsPageBean pageBean = getPageBean();
        String target = getRequestTarget(String.class);
        if ("loginHeaderImg".equals(target)) {
            pageBean.setLoginHeaderImage(null);
        } else if ("loginBackImg".equals(target)) {
            pageBean.setLoginBackImage(null);
        }

        return "refreshlogin";
    }

    @Override
    protected void onOpenPage() throws UnifyException {
        super.onOpenPage();
        loadUIOptions();
    }

    private void loadUIOptions() throws UnifyException {
        UIOptionsPageBean pageBean = getPageBean();
        pageBean.setLoginPageTitle(system().getSysParameterValue(String.class,
                SystemModuleSysParamConstants.SYSTEM_LOGINPAGE_TITLE));
        pageBean.setLoginPageSubtitle(system().getSysParameterValue(String.class,
                SystemModuleSysParamConstants.SYSTEM_LOGINPAGE_SUBTITLE));
        pageBean.setLoginHeaderImage(loadFileResource(SystemFileResourceConstants.LOGIN_HEADER_IMAGE_RESOURCE));
        pageBean.setLoginBackImage(loadFileResource(SystemFileResourceConstants.LOGIN_BACK_IMAGE_RESOURCE));
    }

    private byte[] loadFileResource(String resourceName) throws UnifyException {
        Attachment attachment = fileAttachmentProvider.retrieveFileAttachment(
                FileAttachmentCategoryType.FILERESOURCE_CATEGORY, SystemFileResourceConstants.FILERESOURCE_ENTITY_NAME,
                SystemFileResourceConstants.FILERESOURCE_ENTITY_INST_ID, resourceName);
        if (attachment != null) {
            return attachment.getData();
        }

        return null;
    }

    private void saveFileResource(FileAttachmentType type, String resourceName, byte[] resource) throws UnifyException {
        if (resource != null) {
            fileAttachmentProvider.saveFileAttachment(FileAttachmentCategoryType.FILERESOURCE_CATEGORY,
                    SystemFileResourceConstants.FILERESOURCE_ENTITY_NAME,
                    SystemFileResourceConstants.FILERESOURCE_ENTITY_INST_ID,
                    Attachment.newBuilder(type).name(resourceName).title("").data(resource).build());
        } else {
            fileAttachmentProvider.deleteFileAttachment(FileAttachmentCategoryType.FILERESOURCE_CATEGORY,
                    SystemFileResourceConstants.FILERESOURCE_ENTITY_NAME,
                    SystemFileResourceConstants.FILERESOURCE_ENTITY_INST_ID, resourceName);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy