Interface PageManager

All Superinterfaces:
EventListener, org.apache.wiki.event.WikiEventListener
All Known Implementing Classes:
DefaultPageManager

public interface PageManager extends org.apache.wiki.event.WikiEventListener
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The property value for setting the amount of time before the page locks expire.
    static final String
    The property value for setting the current page provider.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    deletePage(String pageName)
    Deletes a page or an attachment completely, including all versions.
    void
    deletePage(org.apache.wiki.api.core.Page page)
    Deletes an entire page, all versions, all traces.
    void
    deleteVersion(org.apache.wiki.api.core.Page page)
    Deletes only a specific version of a WikiPage.
    Returns a list of currently applicable locks.
    Collection<org.apache.wiki.api.core.Page>
    Returns all pages in some random order.
    getCurrentLock(org.apache.wiki.api.core.Page page)
    Returns the current lock owner of a page.
    Returns the provider name.
    org.apache.wiki.api.core.Page
    getPage(String pagereq)
    Finds the corresponding WikiPage object based on the page name.
    org.apache.wiki.api.core.Page
    getPage(String pagereq, int version)
    Finds the corresponding WikiPage object base on the page name and version.
    org.apache.wiki.api.core.Page
    getPageInfo(String pageName, int version)
    Finds a WikiPage object describing a particular page and version.
    Returns the configured PageSorter.
    getPageText(String pageName, int version)
    Fetches the page text from the repository.
    org.apache.wiki.api.providers.PageProvider
    Returns the page provider currently in use.
    Returns a human-readable description of the current provider.
    getPureText(String page, int version)
    Returns the pure text of a page, no conversions.
    default String
    getPureText(org.apache.wiki.api.core.Page page)
    Returns the pure text of a page, no conversions.
    Set<org.apache.wiki.api.core.Page>
    Returns a Collection of WikiPages, sorted in time order of last change (i.e. first object is the most recently changed).
    default String
    Returns the un-HTMLized text of the latest version of a page.
    getText(String page, int version)
    Returns the un-HTMLized text of the given version of a page.
    default String
    getText(org.apache.wiki.api.core.Page page)
    Returns the un-HTMLized text of the given version of a page in the given context.
    int
    Returns the total count of all pages in the repository.
    <T extends org.apache.wiki.api.core.Page>
    List<T>
    Gets a version history of page.
    lockPage(org.apache.wiki.api.core.Page page, String user)
    Locks page for editing.
    boolean
    pageExists(String pageName)
    Returns true, if the page exists (any version) on the underlying WikiPageProvider.
    boolean
    pageExists(String pageName, int version)
    Checks for existence of a specific page and version on the underlying WikiPageProvider.
    default boolean
    pageExists(org.apache.wiki.api.core.Page page)
    Checks for existence of a specific page and version denoted by a WikiPage on the underlying WikiPageProvider.
    void
    putPageText(org.apache.wiki.api.core.Page page, String content)
    Puts the page text into the repository.
    void
    saveText(org.apache.wiki.api.core.Context context, String text)
    Writes the WikiText of a page into the page repository.
    void
    Marks a page free to be written again.
    boolean
    Returns true, if the requested page (or an alias) exists.
    boolean
    wikiPageExists(String page, int version)
    Returns true, if the requested page (or an alias) exists with the requested version.
    default boolean
    wikiPageExists(org.apache.wiki.api.core.Page page)
    Returns true, if the requested page (or an alias) exists, with the specified version in the WikiPage.

    Methods inherited from interface org.apache.wiki.event.WikiEventListener

    actionPerformed
  • Field Details

  • Method Details

    • getProvider

      org.apache.wiki.api.providers.PageProvider getProvider()
      Returns the page provider currently in use.
      Returns:
      A WikiPageProvider instance.
    • getAllPages

      Collection<org.apache.wiki.api.core.Page> getAllPages() throws org.apache.wiki.api.exceptions.ProviderException
      Returns all pages in some random order. If you need just the page names, please see ReferenceManager#findCreated(), which is probably a lot faster. This method may cause repository access.
      Returns:
      A Collection of WikiPage objects.
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If the backend has problems.
    • getPageText

      String getPageText(String pageName, int version) throws org.apache.wiki.api.exceptions.ProviderException
      Fetches the page text from the repository. This method also does some sanity checks, like checking for the pageName validity, etc. Also, if the page repository has been modified externally, it is smart enough to handle such occurrences.
      Parameters:
      pageName - The name of the page to fetch.
      version - The version to find
      Returns:
      The page content as a raw string
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If the backend has issues.
    • getPureText

      String getPureText(String page, int version)
      Returns the pure text of a page, no conversions. Use this if you are writing something that depends on the parsing of the page. Note that you should always check for page existence through pageExists() before attempting to fetch the page contents. This method is pretty similar to getPageText(String, int), except that it doesn't throw ProviderException, it logs and swallows them.
      Parameters:
      page - The name of the page to fetch.
      version - If WikiPageProvider.LATEST_VERSION, then uses the latest version.
      Returns:
      The page contents. If the page does not exist, returns an empty string.
    • getPureText

      default String getPureText(org.apache.wiki.api.core.Page page)
      Returns the pure text of a page, no conversions. Use this if you are writing something that depends on the parsing the page. Note that you should always check for page existence through pageExists() before attempting to fetch the page contents. This method is pretty similar to getPageText(String, int), except that it doesn't throw ProviderException, it logs and swallows them.
      Parameters:
      page - A handle to the WikiPage
      Returns:
      String of WikiText.
      Since:
      2.1.13, moved to PageManager on 2.11.0.
    • getText

      String getText(String page, int version)
      Returns the un-HTMLized text of the given version of a page. This method also replaces the < and & -characters with their respective HTML entities, thus making it suitable for inclusion on an HTML page. If you want to have the page text without any conversions, use getPureText(String, int).
      Parameters:
      page - WikiName of the page to fetch
      version - Version of the page to fetch
      Returns:
      WikiText.
    • getText

      default String getText(String page)
      Returns the un-HTMLized text of the latest version of a page. This method also replaces the < and & -characters with their respective HTML entities, thus making it suitable for inclusion on an HTML page. If you want to have the page text without any conversions, use getPureText(String, int).
      Parameters:
      page - WikiName of the page to fetch.
      Returns:
      WikiText.
    • getText

      default String getText(org.apache.wiki.api.core.Page page)
      Returns the un-HTMLized text of the given version of a page in the given context. USE THIS METHOD if you don't know what doing.

      This method also replaces the < and & -characters with their respective HTML entities, thus making it suitable for inclusion on an HTML page. If you want to have the page text without any conversions, use getPureText(Page).

      Parameters:
      page - A page reference (not an attachment)
      Returns:
      The page content as HTMLized String.
      Since:
      1.9.15.
      See Also:
    • saveText

      void saveText(org.apache.wiki.api.core.Context context, String text) throws org.apache.wiki.api.exceptions.WikiException
      Writes the WikiText of a page into the page repository. If the jspwiki.properties file contains the property jspwiki.approver.workflow.saveWikiPage and its value resolves to a valid user, Group or Role, this method will place a Decision in the approver's workflow inbox and throw a DecisionRequiredException. If the submitting user is authenticated and the page save is rejected, a notification will be placed in the user's decision queue.
      Parameters:
      context - The current WikiContext
      text - The Wiki markup for the page.
      Throws:
      org.apache.wiki.api.exceptions.WikiException - if the save operation encounters an error during the save operation. If the page-save operation requires approval, the exception will be of type DecisionRequiredException. Individual PageFilters, such as the SpamFilter may also throw a RedirectException.
      Since:
      2.1.28, moved to PageManager on 2.11.0
    • putPageText

      void putPageText(org.apache.wiki.api.core.Page page, String content) throws org.apache.wiki.api.exceptions.ProviderException
      Puts the page text into the repository. Note that this method does NOT update JSPWiki internal data structures, and therefore you should always use saveText()
      Parameters:
      page - Page to save
      content - Wikimarkup to save
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If something goes wrong in the saving phase
    • lockPage

      PageLock lockPage(org.apache.wiki.api.core.Page page, String user)
      Locks page for editing. Note, however, that the PageManager will in no way prevent you from actually editing this page; the lock is just for information.
      Parameters:
      page - WikiPage to lock
      user - Username to use for locking
      Returns:
      null, if page could not be locked.
    • unlockPage

      void unlockPage(PageLock lock)
      Marks a page free to be written again. If there has not been a lock, will fail quietly.
      Parameters:
      lock - A lock acquired in lockPage(). Safe to be null.
    • getCurrentLock

      PageLock getCurrentLock(org.apache.wiki.api.core.Page page)
      Returns the current lock owner of a page. If the page is not locked, will return null.
      Parameters:
      page - The page to check the lock for
      Returns:
      Current lock, or null, if there is no lock
    • getActiveLocks

      Returns a list of currently applicable locks. Note that by the time you get the list, the locks may have already expired, so use this only for informational purposes.
      Returns:
      List of PageLock objects, detailing the locks. If no locks exist, returns an empty list.
      Since:
      2.0.22.
    • getPage

      org.apache.wiki.api.core.Page getPage(String pagereq)
      Finds the corresponding WikiPage object based on the page name. It always finds the latest version of a page.
      Parameters:
      pagereq - The name of the page to look for.
      Returns:
      A WikiPage object, or null, if the page by the name could not be found.
    • getPage

      org.apache.wiki.api.core.Page getPage(String pagereq, int version)
      Finds the corresponding WikiPage object base on the page name and version.
      Parameters:
      pagereq - The name of the page to look for.
      version - The version number to look for. May be WikiProvider.LATEST_VERSION, in which case it will look for the latest version (and this method then becomes the equivalent of getPage(String).
      Returns:
      A WikiPage object, or null, if the page could not be found; or if there is no such version of the page.
      Since:
      1.6.7 (moved to PageManager on 2.11.0).
    • getPageInfo

      org.apache.wiki.api.core.Page getPageInfo(String pageName, int version) throws org.apache.wiki.api.exceptions.ProviderException
      Finds a WikiPage object describing a particular page and version.
      Parameters:
      pageName - The name of the page
      version - A version number
      Returns:
      A WikiPage object, or null, if the page does not exist
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If there is something wrong with the page name or the repository
    • getVersionHistory

      <T extends org.apache.wiki.api.core.Page> List<T> getVersionHistory(String pageName)
      Gets a version history of page. Each element in the returned List is a WikiPage.
      Parameters:
      pageName - The name of the page or attachment to fetch history for
      Returns:
      If the page does not exist or there's some problem retrieving the version history, returns null, otherwise a List of WikiPages / Attachments, each corresponding to a different revision of the page / attachment.
    • getCurrentProvider

      Returns the provider name.
      Returns:
      The full class name of the current page provider.
    • getProviderDescription

      Returns a human-readable description of the current provider.
      Returns:
      A human-readable description.
    • getTotalPageCount

      Returns the total count of all pages in the repository. This method is equivalent of calling getAllPages().size(), but it swallows the ProviderException and returns -1 instead of any problems.
      Returns:
      The number of pages, or -1, if there is an error.
    • getRecentChanges

      Set<org.apache.wiki.api.core.Page> getRecentChanges()
      Returns a Collection of WikiPages, sorted in time order of last change (i.e. first object is the most recently changed). This method also includes attachments.
      Returns:
      Set of WikiPage objects.
    • pageExists

      boolean pageExists(String pageName) throws org.apache.wiki.api.exceptions.ProviderException
      Returns true, if the page exists (any version) on the underlying WikiPageProvider.
      Parameters:
      pageName - Name of the page.
      Returns:
      A boolean value describing the existence of a page
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If the backend fails or the name is illegal.
    • pageExists

      boolean pageExists(String pageName, int version) throws org.apache.wiki.api.exceptions.ProviderException
      Checks for existence of a specific page and version on the underlying WikiPageProvider.
      Parameters:
      pageName - Name of the page
      version - The version to check
      Returns:
      true if the page exists, false otherwise
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If backend fails or name is illegal
      Since:
      2.3.29
    • pageExists

      default boolean pageExists(org.apache.wiki.api.core.Page page) throws org.apache.wiki.api.exceptions.ProviderException
      Checks for existence of a specific page and version denoted by a WikiPage on the underlying WikiPageProvider.
      Parameters:
      page - A WikiPage object describing the name and version.
      Returns:
      true, if the page (or alias, or attachment) exists.
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If something goes badly wrong.
      Since:
      2.0
    • wikiPageExists

      boolean wikiPageExists(String page)
      Returns true, if the requested page (or an alias) exists. Will consider any version as existing. Will check for all types of WikiPages: wiki pages themselves, attachments and special pages (non-existant references to other pages).
      Parameters:
      page - WikiName of the page.
      Returns:
      true, if page (or attachment) exists.
    • wikiPageExists

      boolean wikiPageExists(String page, int version) throws org.apache.wiki.api.exceptions.ProviderException
      Returns true, if the requested page (or an alias) exists with the requested version. Will check for all types of WikiPages: wiki pages themselves, attachments and special pages (non-existant references to other pages).
      Parameters:
      page - Page name
      version - Page version
      Returns:
      True, if page (or alias, or attachment) exists
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If the provider fails.
    • wikiPageExists

      default boolean wikiPageExists(org.apache.wiki.api.core.Page page) throws org.apache.wiki.api.exceptions.ProviderException
      Returns true, if the requested page (or an alias) exists, with the specified version in the WikiPage. Will check for all types of WikiPages: wiki pages themselves, attachments and special pages (non-existant references to other pages).
      Parameters:
      page - A WikiPage object describing the name and version.
      Returns:
      true, if the page (or alias, or attachment) exists.
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If something goes badly wrong.
      Since:
      2.0
    • deleteVersion

      void deleteVersion(org.apache.wiki.api.core.Page page) throws org.apache.wiki.api.exceptions.ProviderException
      Deletes only a specific version of a WikiPage.
      Parameters:
      page - The page to delete.
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - if the page fails
    • deletePage

      void deletePage(String pageName) throws org.apache.wiki.api.exceptions.ProviderException
      Deletes a page or an attachment completely, including all versions. If the page does not exist, does nothing.
      Parameters:
      pageName - The name of the page.
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If something goes wrong.
    • deletePage

      void deletePage(org.apache.wiki.api.core.Page page) throws org.apache.wiki.api.exceptions.ProviderException
      Deletes an entire page, all versions, all traces.
      Parameters:
      page - The WikiPage to delete
      Throws:
      org.apache.wiki.api.exceptions.ProviderException - If the repository operation fails
    • getPageSorter

      Returns the configured PageSorter.
      Returns:
      the configured PageSorter.