Documentation ¶
Overview ¶
Package command provides interfaces for the shell commands and programs on the host.
Index ¶
- Constants
- Variables
- func BaseName(path string) string
- func BaseNamePath(path string) string
- func CopyFile(debug *zap.SugaredLogger, src, dst string) error
- func ImagesDelete(unid string, dirs ...string) error
- func ImagesExt() []string
- func ImagesPixelate(unid string, dirs ...string) error
- func Infos() []string
- func LookCmd(name string) error
- func LookVersion(name, flag, match string) error
- func LookupUnrar() error
- func Lookups() []string
- func OptimizePNG(src string) error
- func Run(debug *zap.SugaredLogger, name string, arg ...string) error
- func RunQuiet(name string, arg ...string) error
- func RunStdOut(name string, arg ...string) ([]byte, error)
- func RunWorkdir(debug *zap.SugaredLogger, name, wdir string, arg ...string) error
- type Align
- type Args
- func (a *Args) AnsiAmiga()
- func (a *Args) AnsiMsDos()
- func (a *Args) Bottomx400()
- func (a *Args) CWebp()
- func (a *Args) CWebpText()
- func (a *Args) CropTop()
- func (a *Args) FourThree()
- func (a *Args) GWebp()
- func (a *Args) JpegPhoto()
- func (a *Args) Leftx400()
- func (a *Args) Middlex400()
- func (a *Args) OneTwo()
- func (a *Args) Pixelate()
- func (a *Args) PortablePixel()
- func (a *Args) Rightx400()
- func (a *Args) Thumbnail()
- func (a *Args) Topx400()
- type Crop
- type Dirs
- func (dir Dirs) PictureImager(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) PreviewGIF(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) PreviewPNG(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) PreviewPhoto(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) PreviewPixels(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) PreviewWebP(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) TextAmigaImager(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) TextImager(debug *zap.SugaredLogger, src, unid string) error
- func (dir Dirs) ThumbPhoto(src, unid string) error
- func (dir Dirs) ThumbPixels(src, unid string) error
- func (dir Dirs) Thumbs(unid string, thumb Thumb) error
- type Thumb
Constants ¶
const ( Arc = "arc" // Arc is the arc decompression command. Arj = "arj" // Arj is the arj decompression command. Ansilove = "ansilove" // Ansilove is the ansilove text to image command. Cwebp = "cwebp" // Cwebp is the Google create webp command. Gwebp = "gif2webp" // Gwebp is the Google gif to webp command. HWZip = "hwzip" // Hwzip the zip decompression command for files using obsolete methods. Lha = "lha" // Lha is the lha/lzh decompression command. Magick = "magick" // Magick is the ImageMagick v7+ command. Optipng = "optipng" // Optipng is the PNG optimizer command. Tar = "tar" // Tar is the tar decompression command. // A note about unrar on linux, the installation cannot use the unrar-free package, // which is a poor substitute for the files this application needs to handle. // The unrar binary should return: // "UNRAR 6.24 freeware, Copyright (c) 1993-2023 Alexander Roshal". Unrar = "unrar" // Unrar is the rar decompression command. Unzip = "unzip" // Unzip is the zip decompression command. Zip7 = "7zz" // Zip7 is the 7-Zip decompression command. ZipInfo = "zipinfo" // ZipInfo is the zip information command. )
const X400 = "400x400" // X400 returns a 400 x 400 pixel image size
Variables ¶
var ( ErrEmpty = errors.New("file is empty") ErrImg = errors.New("file is not an known image format") ErrIsDir = errors.New("file is a directory") ErrIsFile = errors.New("directory path points to a file") ErrMatch = errors.New("no match value is present") ErrVers = errors.New("version mismatch") ErrZap = errors.New("zap logger instance is nil") )
Functions ¶
func BaseName ¶
BaseName returns the base name of the file without the extension. Both the directory and extension are removed.
func BaseNamePath ¶
BaseNamePath returns the directory and base name of the file without the extension.
func CopyFile ¶
func CopyFile(debug *zap.SugaredLogger, src, dst string) error
CopyFile copies the src file to the dst file and path.
func ImagesDelete ¶ added in v0.10.0
ImagesDelete removes images from the specified directories that match the unid. The unid is the unique identifier for the image file and shared between the preview and thumbnail images.
func ImagesExt ¶ added in v0.10.0
func ImagesExt() []string
ImagesExt returns a slice of image file extensions used by the website preview and thumbnail images, including the legacy and modern formats.
func ImagesPixelate ¶ added in v0.10.0
ImagesPixelate converts the images in the specified directories to pixelated images. The unid is the unique identifier for the image file and shared between the preview and thumbnail images.
func Infos ¶
func Infos() []string
Infos returns details for the list of the execute command names used by the application.
func LookVersion ¶
LookVersion returns an error when the match string is not found in the named command output.
func LookupUnrar ¶
func LookupUnrar() error
LookupUnrar returns an error if the name Alexander Roshal is not found in the unrar version output.
func Lookups ¶
func Lookups() []string
Lookups returns a list of the execute command names used by the application.
func OptimizePNG ¶
OptimizePNG optimizes the src PNG image using the optipng command. The optimization is done in-place, overwriting the src file. It should be used in a deferred function.
func Run ¶
func Run(debug *zap.SugaredLogger, name string, arg ...string) error
Run looks for the command in the system path and executes it with the arguments. Any output to stderr is logged as a debug message.
func RunQuiet ¶
RunQuiet looks for the command in the system path and executes it with the arguments.
func RunStdOut ¶ added in v0.10.0
RunStdOut looks for the command in the system path and executes it with the arguments. Any output is sent to the stdout buffer.
func RunWorkdir ¶ added in v0.10.0
func RunWorkdir(debug *zap.SugaredLogger, name, wdir string, arg ...string) error
RunWorkdir looks for the command in the system path and executes it with the arguments. An optional working directory is set for the command. Any output to stderr is logged as a debug message.
Types ¶
type Align ¶ added in v0.10.0
type Align int
Align is a type that represents the alignment of the thumbnail image.
const ( Top Align = iota // Top uses the top alignment of the preview image Middle // Middle uses the center alignment of the preview image Bottom // Bottom uses the bottom alignment of the preview image Left // Left uses the left alignment of the preview image Right // Right uses the right alignment of the preview image )
type Args ¶
type Args []string
Args is a slice of strings that represents the command line arguments. Each argument and its value is a separate string in the slice.
func (*Args) AnsiAmiga ¶
func (a *Args) AnsiAmiga()
AnsiAmiga appends the command line arguments for the ansilove command to transform an Commodore Amiga ANSI text file into a PNG image.
func (*Args) AnsiMsDos ¶ added in v0.10.0
func (a *Args) AnsiMsDos()
AnsiMsDos appends the command line arguments for the ansilove command to transform an ANSI text file into a PNG image.
func (*Args) Bottomx400 ¶ added in v0.10.0
func (a *Args) Bottomx400()
Bottomx400 appends the command line arguments for the magick command to transform an image into a 400x400 pixel image using the "South" bottom alignment.
func (*Args) CWebp ¶
func (a *Args) CWebp()
CWebp appends the command line arguments for the cwebp command to transform an image into a webp image.
func (*Args) CWebpText ¶ added in v0.10.0
func (a *Args) CWebpText()
CWebpText appends the command line arguments for the cwebp command to transform a text image into a webp image.
func (*Args) CropTop ¶ added in v0.10.0
func (a *Args) CropTop()
CropTop appends the command line arguments for the magick command to transform an image into a 1:1 square image using the "North" top alignment.
func (*Args) FourThree ¶ added in v0.10.0
func (a *Args) FourThree()
FourThree appends the command line arguments for the magick command to transform an image into a 4:3 image using the "North" top alignment.
func (*Args) GWebp ¶
func (a *Args) GWebp()
GWebp appends the command line arguments for the gif2webp command to transform a GIF image into a webp image.
func (*Args) JpegPhoto ¶ added in v0.10.0
func (a *Args) JpegPhoto()
JpegPhoto appends the command line arguments for the convert command to transform an image into a JPEG image.
func (*Args) Leftx400 ¶ added in v0.10.0
func (a *Args) Leftx400()
Leftx400 appends the command line arguments for the magick command to transform an image into a 400x400 pixel image using the "South" bottom alignment.
func (*Args) Middlex400 ¶ added in v0.10.0
func (a *Args) Middlex400()
Middlex400 appends the command line arguments for the magick command to transform an image into a 400x400 pixel image using the "Center" alignment.
func (*Args) OneTwo ¶ added in v0.10.0
func (a *Args) OneTwo()
OneTwo appends the command line arguments for the magick command to transform an image into a 1:2 image using the "North" top alignment.
func (*Args) Pixelate ¶ added in v0.10.0
func (a *Args) Pixelate()
Pixelate appends the command line arguments for the convert command to transform an image into a PNG image.
func (*Args) PortablePixel ¶ added in v0.10.0
func (a *Args) PortablePixel()
PortablePixel appends the command line arguments for the convert command to transform an image into a PNG image.
func (*Args) Rightx400 ¶ added in v0.10.0
func (a *Args) Rightx400()
Rightx400 appends the command line arguments for the magick command to transform an image into a 400x400 pixel image using the "South" bottom alignment.
type Crop ¶ added in v0.10.0
type Crop int
Crop is a type that represents the crop position of the preview image.
type Dirs ¶
type Dirs struct { Download string // Download is the directory path for the file downloads. Preview string // Preview is the directory path for the image previews. Thumbnail string // Thumbnail is the directory path for the image thumbnails. }
Dirs is a struct of the download, preview and thumbnail directories.
func (Dirs) PictureImager ¶ added in v0.10.0
func (dir Dirs) PictureImager(debug *zap.SugaredLogger, src, unid string) error
PictureImager converts the src image file and creates a image in the preview directory and a thumbnail image in the thumbnail directory.
The image formats created depend on the type of image file. But thumbnails will always either be a .webp or .png image. While the preview image will be legacy .png, .jpeg images or modern .avif or .webp images or a combination of both.
func (Dirs) PreviewGIF ¶
func (dir Dirs) PreviewGIF(debug *zap.SugaredLogger, src, unid string) error
PreviewGIF converts the src GIF image to a webp image the screenshot directory. A webp thumbnail image is also created and copied to the thumbnail directory.
func (Dirs) PreviewPNG ¶
func (dir Dirs) PreviewPNG(debug *zap.SugaredLogger, src, unid string) error
PreviewPNG copies and optimizes the src PNG image to the screenshot directory. A webp thumbnail image is also created and copied to the thumbnail directory.
func (Dirs) PreviewPhoto ¶ added in v0.10.0
func (dir Dirs) PreviewPhoto(debug *zap.SugaredLogger, src, unid string) error
PreviewPhoto converts the src image to lossy jpeg or a webp image in the screenshot directory. A webp thumbnail image is also created and copied to the thumbnail directory. The lossy conversion is useful for photographs.
The lossy conversion is done using the ImageMagick convert command.
func (Dirs) PreviewPixels ¶ added in v0.10.0
func (dir Dirs) PreviewPixels(debug *zap.SugaredLogger, src, unid string) error
PreviewPixels converts the src image to a PNG and webp images in the screenshot directory. A webp thumbnail image is also created and copied to the thumbnail directory. The conversion is useful for screenshots of text, terminals interfaces and pixel art.
The lossless conversion is done using the ImageMagick convert command.
func (Dirs) PreviewWebP ¶
func (dir Dirs) PreviewWebP(debug *zap.SugaredLogger, src, unid string) error
PreviewWebP runs cwebp text preset on a supported image and copies the result to the screenshot directory. A webp thumbnail image is also created and copied to the thumbnail directory.
While the src image can be .png, .jpg, .tiff or .webp.
func (Dirs) TextAmigaImager ¶ added in v0.10.0
func (dir Dirs) TextAmigaImager(debug *zap.SugaredLogger, src, unid string) error
TextImager converts the src text file and creates a PNG image using an Amiga Topaz+ font and stores it in the preview directory. A webp thumbnail image is also created and copied to the thumbnail directory.
func (Dirs) TextImager ¶ added in v0.10.0
func (dir Dirs) TextImager(debug *zap.SugaredLogger, src, unid string) error
TextImager converts the src text file and creates a PNG image in the preview directory. A webp thumbnail image is also created and copied to the thumbnail directory.
func (Dirs) ThumbPhoto ¶ added in v0.10.0
ThumbPhoto converts the src image to a 400x400 pixel, webp image in the thumbnail directory. The conversion is done using a temporary, lossy PNG image.
func (Dirs) ThumbPixels ¶ added in v0.10.0
ThumbPixels converts the src image to a 400x400 pixel, webp image in the thumbnail directory. The conversion is done using a temporary, lossless PNG image.