Class PublishServiceImpl
java.lang.Object
org.craftercms.studio.impl.v2.service.publish.PublishServiceImpl
- All Implemented Interfaces:
PublishService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
cancelPublishingPackages
(String siteId, List<String> packageIds) Cancel publishing packagesgetAvailablePublishingTargets
(String siteId) Get available publishing targets for given sitegetDeploymentHistory
(String siteId, int daysFromToday, int numberOfItems, String filterType) Get deployment historygetPublishingHistory
(String siteId, String environment, String path, String publisher, ZonedDateTime dateFrom, ZonedDateTime dateTo, String contentType, long state, String sortBy, String order, int offset, int limit) Get deployment history items for given search parametersint
getPublishingHistoryTotal
(String siteId, String environment, String path, String publisher, ZonedDateTime dateFrom, ZonedDateTime dateTo, String contentType, long state) Get total number of publishing history items for given search parametersgetPublishingPackageDetails
(String siteId, String packageId) Get publishing package detailsgetPublishingPackages
(String siteId, String environment, String path, List<String> states, int offset, int limit) Get publishing packages for given search parametersint
Get total number of publishing packages for given search parametersboolean
isSitePublished
(String siteId) Check if site has ever been published.publishAll
(String siteId, String publishingTarget, String comment) Publishes all changes for the given site & targetvoid
setActivityStreamServiceInternal
(ActivityStreamServiceInternal activityStreamServiceInternal) void
setAuditServiceInternal
(AuditServiceInternal auditServiceInternal) void
setItemServiceInternal
(ItemServiceInternal itemServiceInternal) void
setPublishServiceInternal
(PublishServiceInternal publishServiceInternal) void
setSecurityService
(SecurityService securityService) void
setServicesConfig
(ServicesConfig servicesConfig) void
setSiteService
(SiteService siteService) void
setStudioUtils
(StudioUtils studioUtils) void
setUserServiceInternal
(UserServiceInternal userServiceInternal)
-
Constructor Details
-
PublishServiceImpl
public PublishServiceImpl()
-
-
Method Details
-
getPublishingPackagesTotal
public int getPublishingPackagesTotal(String siteId, String environment, String path, List<String> states) throws SiteNotFoundException Description copied from interface:PublishService
Get total number of publishing packages for given search parameters- Specified by:
getPublishingPackagesTotal
in interfacePublishService
- Parameters:
siteId
- site identifierenvironment
- publishing environmentpath
- regular expression for pathsstates
- publishing package states- Returns:
- total number of publishing packages
- Throws:
SiteNotFoundException
- site not found
-
getPublishingPackages
public List<PublishingPackage> getPublishingPackages(String siteId, String environment, String path, List<String> states, int offset, int limit) throws SiteNotFoundException Description copied from interface:PublishService
Get publishing packages for given search parameters- Specified by:
getPublishingPackages
in interfacePublishService
- Parameters:
siteId
- site identifierenvironment
- publishing environmentpath
- regular expression for pathsstates
- publishing package statesoffset
- offset for paginationlimit
- limit for pagination- Returns:
- list of publishing packages
- Throws:
SiteNotFoundException
- site not found
-
getPublishingPackageDetails
public PublishingPackageDetails getPublishingPackageDetails(String siteId, String packageId) throws SiteNotFoundException, PublishingPackageNotFoundException Description copied from interface:PublishService
Get publishing package details- Specified by:
getPublishingPackageDetails
in interfacePublishService
- Parameters:
siteId
- site identifierpackageId
- package identifier- Returns:
- publishing package details
- Throws:
SiteNotFoundException
- site not foundPublishingPackageNotFoundException
-
cancelPublishingPackages
public void cancelPublishingPackages(String siteId, List<String> packageIds) throws ServiceLayerException, UserNotFoundException Description copied from interface:PublishService
Cancel publishing packages- Specified by:
cancelPublishingPackages
in interfacePublishService
- Parameters:
siteId
- site identifierpackageIds
- list of package identifiers- Throws:
ServiceLayerException
UserNotFoundException
-
getPublishingHistoryTotal
public int getPublishingHistoryTotal(String siteId, String environment, String path, String publisher, ZonedDateTime dateFrom, ZonedDateTime dateTo, String contentType, long state) Description copied from interface:PublishService
Get total number of publishing history items for given search parameters- Specified by:
getPublishingHistoryTotal
in interfacePublishService
- Parameters:
siteId
- site identifierenvironment
- environment to get publishing historypath
- regular expression to filter pathspublisher
- filter publishing history for specified userdateFrom
- lower boundary for date rangedateTo
- upper boundary for date rangecontentType
- publishing history for specified content typestate
- filter items by their state- Returns:
- total number of deployment history items
-
getPublishingHistory
public List<PublishingDashboardItem> getPublishingHistory(String siteId, String environment, String path, String publisher, ZonedDateTime dateFrom, ZonedDateTime dateTo, String contentType, long state, String sortBy, String order, int offset, int limit) Description copied from interface:PublishService
Get deployment history items for given search parameters- Specified by:
getPublishingHistory
in interfacePublishService
- Parameters:
siteId
- site identifierenvironment
- environment to get publishing historypath
- regular expression to filter pathspublisher
- filter publishing history for specified userdateFrom
- lower boundary for date rangedateTo
- upper boundary for date rangecontentType
- publishing history for specified content typestate
- filter items by their statesortBy
- sort publishing historyorder
- apply order to publishing historyoffset
- offset of the first item in the result setlimit
- number of items to return- Returns:
- total number of publishing packages
-
getDeploymentHistory
public List<DeploymentHistoryGroup> getDeploymentHistory(String siteId, int daysFromToday, int numberOfItems, String filterType) throws ServiceLayerException, UserNotFoundException Description copied from interface:PublishService
Get deployment history- Specified by:
getDeploymentHistory
in interfacePublishService
- Parameters:
siteId
- site identifierdaysFromToday
- number of days for historynumberOfItems
- number of items to displayfilterType
- filter results by filter type- Returns:
- Throws:
ServiceLayerException
UserNotFoundException
-
publishAll
public RepositoryChanges publishAll(String siteId, String publishingTarget, String comment) throws ServiceLayerException, UserNotFoundException Description copied from interface:PublishService
Publishes all changes for the given site & target- Specified by:
publishAll
in interfacePublishService
- Parameters:
siteId
- the id of the sitepublishingTarget
- the publishing targetcomment
- submission comment- Returns:
- result of the publishing
- Throws:
ServiceLayerException
- if there is any error during publishingUserNotFoundException
-
getAvailablePublishingTargets
public List<PublishingTarget> getAvailablePublishingTargets(String siteId) throws SiteNotFoundException Description copied from interface:PublishService
Get available publishing targets for given site- Specified by:
getAvailablePublishingTargets
in interfacePublishService
- Parameters:
siteId
- site identifier- Returns:
- list of available publishing targets
- Throws:
SiteNotFoundException
- Site doesn't exist
-
isSitePublished
Description copied from interface:PublishService
Check if site has ever been published.- Specified by:
isSitePublished
in interfacePublishService
- Parameters:
siteId
- site identifier- Returns:
- true if site has been published at least once, otherwise false
- Throws:
SiteNotFoundException
- Site doesn't exist
-
setPublishServiceInternal
-
setSiteService
-
setAuditServiceInternal
-
setSecurityService
-
setItemServiceInternal
-
setStudioUtils
-
setServicesConfig
-
setActivityStreamServiceInternal
public void setActivityStreamServiceInternal(ActivityStreamServiceInternal activityStreamServiceInternal) -
setUserServiceInternal
-