Class CmsKeyDummyMacroResolver

java.lang.Object
org.opencms.util.CmsMacroResolver
org.opencms.jsp.util.CmsKeyDummyMacroResolver
All Implemented Interfaces:
I_CmsMacroResolver

Macro resolver used to temporarily replace localization message macros with random UUIDs and then replace the UUIDs with the original key after all other macro processing has happened.

We need this because we want to preserve the message key, but evaluate macros they may be nested in.

  • Field Details

  • Constructor Details

  • Method Details

    • getKey

      public static String getKey(String s)
      Extracts the message from a string of the form %(key.{message}), or returns null if the input string does not have this form.
      Parameters:
      s - the input string
      Returns:
      the key the extracted message key
    • getKey

      public static String getKey(String s, CmsMacroResolver delegate)
      Gets the localization key name of a (potentially nested) key macro in a base string.

      Parameters:
      s - the base string
      delegate - the macro resolver used to resolve macros which the key macro may be nested in
      Returns:
      the localization key
    • getKeys

      public static List<String> getKeys(String s, CmsMacroResolver delegate)
      Gets the localization keys from a string consisting solely of localization key macros (only whitespace is allowed between them).
      Parameters:
      s - the string to extract the localization keys from
      delegate - the macro resolver to use for non-localization macros
    • parseKeys

      public static List<String> parseKeys(String s)
      Parses a string that is a sequence of %(key....) macros and extracts the corresponding keys.

      There may be additional whitespace before or after the macros, but nothing else. If anything else is found, null will be returned.

      Parameters:
      s - the input string
      Returns:
      the sequence of extracted keys
    • getMacroValue

      public String getMacroValue(String macro)
      Description copied from interface: I_CmsMacroResolver
      Resolves a single macro to the macro value, returns null if the macro could not be resolved.

      Specified by:
      getMacroValue in interface I_CmsMacroResolver
      Overrides:
      getMacroValue in class CmsMacroResolver
      Parameters:
      macro - the macro to resolve
      Returns:
      the resolved macro or null if the macro could not be resolved
      See Also:
    • resolveMacros

      public String resolveMacros(String input)
      Description copied from class: CmsMacroResolver
      Resolves the macros in the given input.

      Calls CmsMacroResolver.resolveMacros(String) until no more macros can be resolved in the input. This way "nested" macros in the input are resolved as well.

      Specified by:
      resolveMacros in interface I_CmsMacroResolver
      Overrides:
      resolveMacros in class CmsMacroResolver
      Parameters:
      input - the input to resolve the macros in
      Returns:
      the input with all macros resolved
      See Also: