/** * * Copyright (c) 2014, the Railo Company Ltd. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * **/ /** * Implements the CFML Function lsdateformat */ package lucee.runtime.functions.international; import java.util.Locale; import java.util.TimeZone; import lucee.commons.lang.StringUtil; import lucee.runtime.PageContext; import lucee.runtime.exp.PageException; import lucee.runtime.ext.function.BIF; import lucee.runtime.ext.function.Function; import lucee.runtime.op.Caster; import lucee.runtime.op.date.DateCaster; import lucee.runtime.type.dt.DateTime; public final class LSDateFormat extends BIF implements Function { private static final long serialVersionUID = 4720003854756942610L; public static String call(PageContext pc , Object object) throws PageException { return _call(pc, object, "medium", pc.getLocale(),pc.getTimeZone()); } public static synchronized String call(PageContext pc , Object object, String mask) throws PageException { return _call(pc, object, mask, pc.getLocale(),pc.getTimeZone()); } public static synchronized String call(PageContext pc , Object object, String mask, Locale locale) throws PageException { return _call(pc, object, mask, locale,pc.getTimeZone()); } public static synchronized String call(PageContext pc , Object object, String mask,Locale locale,TimeZone tz) throws PageException { return _call(pc, object, mask, locale==null?pc.getLocale():locale, tz==null?pc.getTimeZone():tz); } @Override public Object invoke(PageContext pc, Object[] args) throws PageException { if (args.length == 1) { return call(pc, args[0]); } else if (args.length == 2) { return call(pc, args[0], Caster.toString(args[1])); } else if (args.length == 3){ return call(pc, args[0], Caster.toString(args[1]), args[2]==null?null:Caster.toLocale(args[2])); } else { return call(pc, args[0], Caster.toString(args[1]), args[2]==null?null:Caster.toLocale(args[2]), args[3]==null?null:Caster.toTimeZone(args[3])); } } private static synchronized String _call(PageContext pc , Object object, String mask,Locale locale,TimeZone tz) throws PageException { if(StringUtil.isEmpty(object)) return ""; return new lucee.runtime.format.DateFormat(locale). format(toDateLS(pc ,locale,tz, object),mask,tz); } private static DateTime toDateLS(PageContext pc ,Locale locale, TimeZone timeZone, Object object) throws PageException { if(object instanceof DateTime) return (DateTime) object; else if(object instanceof CharSequence) { DateTime res = DateCaster.toDateTime(locale,Caster.toString(object),timeZone,null,locale.equals(Locale.US)); if(res!=null)return res; } return DateCaster.toDateAdvanced(object,timeZone); } }