Freemarkerカスタムラベル
1803 ワード
/**
*
*
* @author liufang
*
*/
public class ChannelDirective implements TemplateDirectiveModel {
/**
* , ID。
*/
public static final String PARAM_ID = "id";
/**
* , 。
*/
public static final String PARAM_PATH = "path";
/**
* , ID。 , , 。
*/
public static final String PARAM_SITE_ID = "siteId";
@SuppressWarnings("unchecked")
public void execute(Environment env, Map params, TemplateModel[] loopVars,
TemplateDirectiveBody body) throws TemplateException, IOException {
CmsSite site = FrontUtils.getSite(env);
Integer id = DirectiveUtils.getInt(PARAM_ID, params);
Channel channel;
if (id != null) {
channel = channelMng.findById(id);
} else {
String path = DirectiveUtils.getString(PARAM_PATH, params);
if (StringUtils.isBlank(path)) {
// path , id 。
throw new ParamsRequiredException(PARAM_ID);
}
Integer siteId = DirectiveUtils.getInt(PARAM_SITE_ID, params);
if (siteId == null) {
siteId = site.getId();
}
channel = channelMng.findByPathForTag(path, siteId);
}
Map<String, TemplateModel> paramWrap = new HashMap<String, TemplateModel>(
params);
paramWrap.put("tag_bean", DEFAULT_WRAPPER.wrap(channel));
Map<String, TemplateModel> origMap = DirectiveUtils
.addParamsToVariable(env, paramWrap);
body.render(env.getOut());
DirectiveUtils.removeParamsFromVariable(env, paramWrap, origMap);
}
@Autowired
private ChannelMng channelMng;
}