Interface ThumbnailManager
- All Known Subinterfaces:
ThumbnailManagerInternal
- All Known Implementing Classes:
DefaultThumbnailManager
public interface ThumbnailManager
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptioncom.atlassian.core.util.thumbnail.Thumbnail
getThumbnail
(@NonNull Attachment attachment) Returns a thumbnail for this attachment having ensured the thumbnail exists in the filesystem, generating it only if it doesn't already exist.com.atlassian.core.util.thumbnail.Thumbnail
getThumbnail
(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) Returns a thumbnail for this attachment having ensured the thumbnail exists in the filesystem, generating it only if it doesn't already exist.getThumbnailData
(@NonNull Attachment attachment) Retrieves the thumbnail data (as a stream) of the latest version from where it was stored in the file system.getThumbnailData
(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) Retrieves the thumbnail data (as a stream) of the latest version from where it was stored in the file system.getThumbnailFile
(long attachmentId, int version, long contentId) Deprecated.since 7.12 useThumbnailManagerInternal.getThumbnailFile(long, int, long)
getThumbnailFile
(@NonNull Attachment attachment) Deprecated.getThumbnailFile
(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) Deprecated.getThumbnailInfo
(@NonNull Attachment attachment) Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk.getThumbnailInfo
(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk.getThumbnailInfo
(@NonNull Attachment attachment, @Nullable String rootAttachmentPath) Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk.getThumbnailInfo
(@NonNull Attachment attachment, @Nullable String rootAttachmentPath, @Nullable ImageDimensions imageDimensions) Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk.boolean
isThumbnailable
(@Nullable Attachment attachment) Checks the content type/mime type of the attachment to determine whether a thumbnail can be created from itboolean
isThumbnailable
(@Nullable ThumbnailInfo info) Check the thumbnail information to determine whether a thumbnail can be created from itboolean
removeThumbnail
(@NonNull Attachment attachment) Removes the thumbnail for the specified attachment
-
Field Details
-
THUMBNAIL_PATH_SUFFIX
Deprecated.since 7.12 useThumbnailManagerInternal.THUMBNAIL_DIR_NAME
-
THUMBNAIL_IMAGE_DARK_FEATURE
- See Also:
-
-
Method Details
-
isThumbnailable
Checks the content type/mime type of the attachment to determine whether a thumbnail can be created from it- Parameters:
attachment
- the attachment- Returns:
- true if the attachment can have thumbnail, otherwise false
-
getThumbnailData
Retrieves the thumbnail data (as a stream) of the latest version from where it was stored in the file system. This function assumes that the thumbnail has been created i.e getThumbnail has been called.- Parameters:
attachment
- the attachment- Returns:
- the input stream of the thumbnail
- Throws:
FileNotFoundException
- if the thumbnail file is not found
-
getThumbnailData
InputStream getThumbnailData(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) throws FileNotFoundException Retrieves the thumbnail data (as a stream) of the latest version from where it was stored in the file system. This function assumes that the thumbnail has been created. i.e getThumbnail has been called.- Parameters:
attachment
- the attachmentimageDimensions
- image dimensions of the thumbnail- Returns:
- the input stream of the thumbnail
- Throws:
FileNotFoundException
- if the thumbnail file is not found- Since:
- 5.7
-
getThumbnailFile
Deprecated.since 7.12 useThumbnailManagerInternal.getThumbnailFile(long, int, long)
-
getThumbnailFile
Deprecated.Returns the path to the thumbnail for this attachment- Parameters:
attachment
- the attachment- Returns:
- the thumbnail file
-
getThumbnailFile
@Deprecated File getThumbnailFile(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) Deprecated.Returns the path to the thumbnail for this attachment- Parameters:
attachment
- the attachmentimageDimensions
- image dimensions of the thumbnail- Returns:
- the thumbnail file
- Since:
- 5.7
-
removeThumbnail
Removes the thumbnail for the specified attachment- Parameters:
attachment
- the attachment- Returns:
- true if the thumbnail was found and was successfully removed, false if no thumbnail was found or the thumbnail could not be removed
-
getThumbnail
com.atlassian.core.util.thumbnail.Thumbnail getThumbnail(@NonNull Attachment attachment) throws IllegalArgumentException Returns a thumbnail for this attachment having ensured the thumbnail exists in the filesystem, generating it only if it doesn't already exist. The size of the thumbnail is set by the application's configuration.- Parameters:
attachment
- the attachment- Returns:
- the thumbnail if the attachment
- Throws:
IllegalArgumentException
- if the attachment is an inappropriate type for thumbnailing, i.e.isThumbnailable(Attachment)
returns false
-
getThumbnail
com.atlassian.core.util.thumbnail.Thumbnail getThumbnail(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) throws IllegalArgumentException Returns a thumbnail for this attachment having ensured the thumbnail exists in the filesystem, generating it only if it doesn't already exist. The size of the thumbnail is set in parameters, if it doesn't exist, then use the application's configuration.- Parameters:
attachment
- the attachmentimageDimensions
- image dimensions of the thumbnail- Returns:
- the thumbnail of the attachment
- Throws:
IllegalArgumentException
- if the attachment is an inappropriate type for thumbnailing, i.e.isThumbnailable(Attachment)
returns false- Since:
- 5.7
-
getThumbnailInfo
ThumbnailInfo getThumbnailInfo(@NonNull Attachment attachment) throws CannotGenerateThumbnailException Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk. The address of the thumbnail will be rooted at the context path, rather than the base url. The thumbnail maximum size is taken from the global settings.- Parameters:
attachment
- the attachment- Returns:
- the thumbnail information of the attachment, never null
- Throws:
CannotGenerateThumbnailException
- if no thumbnail information can be generated for this thumbnail
-
getThumbnailInfo
ThumbnailInfo getThumbnailInfo(@NonNull Attachment attachment, @Nullable ImageDimensions imageDimensions) throws CannotGenerateThumbnailException Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk. The address of the thumbnail will be rooted at the context path, rather than the base url. The thumbnail maximum size is set in parameters, if it doesn't exist, then taken from the global settings.- Parameters:
attachment
- the attachmentimageDimensions
- image dimensions of the thumbnail- Returns:
- the thumbnail information of the attachment, never null
- Throws:
CannotGenerateThumbnailException
- if no thumbnail information can be generated for this thumbnail- Since:
- 5.7
-
getThumbnailInfo
ThumbnailInfo getThumbnailInfo(@NonNull Attachment attachment, @Nullable String rootAttachmentPath) throws CannotGenerateThumbnailException Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk. The address of the thumbnail will be rooted at the context path, rather than the base url. The thumbnail maximum size is taken from the global settings.- Parameters:
attachment
- the attachmentrootAttachmentPath
- path to the thumbnail, excepting the thumbnail itself. Eg the value returned byConfluenceRenderUtils.getAttachmentRemotePath(com.atlassian.confluence.pages.Attachment)
.- Returns:
- the thumbnail information of the attachment, never null
- Throws:
CannotGenerateThumbnailException
- if no thumbnail information can be generated for this thumbnail
-
getThumbnailInfo
ThumbnailInfo getThumbnailInfo(@NonNull Attachment attachment, @Nullable String rootAttachmentPath, @Nullable ImageDimensions imageDimensions) throws CannotGenerateThumbnailException Return the details of a thumbnail for a given attachment without actually creating the thumbnail file on disk. The address of the thumbnail will be rooted at the context path, rather than the base url. The thumbnail maximum size is set in parameters, if it doesn't exist, then taken from the global settings.- Parameters:
attachment
- the attachmentrootAttachmentPath
- path to the thumbnail, excepting the thumbnail itself. Eg the value returned byConfluenceRenderUtils.getAttachmentRemotePath(com.atlassian.confluence.pages.Attachment)
.imageDimensions
- image dimensions of the thumbnail- Returns:
- thumbnail information for the attachment, never null
- Throws:
CannotGenerateThumbnailException
- if no thumbnail information can be generated for this thumbnail- Since:
- 5.7
-
isThumbnailable
Check the thumbnail information to determine whether a thumbnail can be created from it- Parameters:
info
- the thumbnail information- Returns:
- true if it can have thumbnail, otherwise false
-
ThumbnailManagerInternal.THUMBNAIL_DIR_NAME