Package org.auraframework.throwable.quickfix

Source Code of org.auraframework.throwable.quickfix.CreateThemeVarQuickFix

/*
* Copyright (C) 2013 salesforce.com, inc.
*
* 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.auraframework.throwable.quickfix;

import java.io.Writer;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.auraframework.Aura;
import org.auraframework.def.ComponentDef;
import org.auraframework.def.DefDescriptor;
import org.auraframework.def.ThemeDef;
import org.auraframework.system.Source;
import org.auraframework.throwable.AuraError;
import org.auraframework.throwable.AuraRuntimeException;
import org.auraframework.util.AuraTextUtil;

import com.google.common.collect.Maps;

/**
* Quick fix for missing vars on theme defs.
*/
public class CreateThemeVarQuickFix extends AuraQuickFix {
    private static final Pattern TAG = Pattern.compile("<aura:theme([^>]*?)>", Pattern.CASE_INSENSITIVE
            | Pattern.MULTILINE);

    public CreateThemeVarQuickFix(DefDescriptor<?> descriptor, String name) {
        this(createMap(descriptor, name));
    }

    public CreateThemeVarQuickFix(Map<String, Object> attributes) {
        super("Create Theme Var", attributes, Aura.getDefinitionService().getDefDescriptor(
                "auradev:createThemeVarDefQuickFix", ComponentDef.class));
    }

    private static Map<String, Object> createMap(DefDescriptor<?> descriptor, String name) {
        Map<String, Object> ret = Maps.newHashMap();
        ret.put("descriptor", descriptor);
        ret.put("name", name);
        return ret;
    }

    @Override
    protected void fix() throws Exception {
        String descriptor = (String) getAttributes().get("descriptor");
        String name = (String) getAttributes().get("name");
        String defaultValue = (String) getAttributes().get("defaultValue");
        DefDescriptor<?> desc = Aura.getDefinitionService().getDefDescriptor(descriptor, ThemeDef.class);
        Source<?> source = Aura.getContextService().getCurrentContext().getDefRegistry().getSource(desc);

        if ("".equals(name)) {
            throw new AuraRuntimeException("Cannot leave the name field blank");
        }

        if ((AuraTextUtil.validateAttributeName(name)) != true) {
            throw new AuraRuntimeException("Invalid var name:'" + name
                    + "', Refer to Auradocs for valid attribute names");
        }

        if (!source.exists()) {
            throw new AuraError("Cannot find source for " + desc.getQualifiedName());
        }

        String s = source.getContents();
        Matcher m = TAG.matcher(s);
        if (m.find()) {
            StringBuilder sb = new StringBuilder(s.length() + 50);
            sb.append(s.subSequence(0, m.end()));
            sb.append("\n    <aura:var name=\"");
            sb.append(name);
            sb.append("\" value=\"");
            sb.append(defaultValue);
            sb.append("\"/>\n");
            sb.append(s.substring(m.end() + 1));
            Writer writer = source.getWriter();
            try {
                writer.write(sb.toString());
            } finally {
                writer.close();
            }
        } else {
            throw new AuraError("Could not locate opening tag for " + desc.getQualifiedName());
        }

    }
}
TOP

Related Classes of org.auraframework.throwable.quickfix.CreateThemeVarQuickFix

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.