Download the PHP package mademedia/silverstripe-cloudinary without Composer

On this page you can find all versions of the php package mademedia/silverstripe-cloudinary. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package silverstripe-cloudinary

SilverStripe Cloudinary

Bring the power of Cloudinary to SilverStripe!

Cloudinary is a cloud-based media management platform that provides an easy solution for developers to store, manage, and serve highly optimised on-the-fly digital assets.

A note on branches, releases, and PHP versions

If you're using anyting under PHP 8, please use the legacy branch and 6.x.x releases.

The main branch and ^7.x.x should be used for any projects running on PHP 8.1 and over.

Table of Contents

SilverStripe has a asset manager, why do I need this?

The out of the box asset manager has one fatal flaw: the assets live on the server. You may be thinking "well, duh, where else are they gonna live?"

Assets being stored a server is fine for smaller sites that don't require much more than a server and some good caching. It becomes a problem when you have a multi-server setup and all instances need to serve the same asset.

Keeping assets in sync across multiple servers is a real pain in the ass. Yes, it could be automated, but it needs to be done, which means there has to be some devop nerd who has to put the processes in place for it to happen, and some code monkey who has to be on hand in case something inadvertently goes wrong. A real headache.

The simplest solution is to move the assets to the cloud. Here's that voice again saying "there's already an S3 module that does this."

Yes, there is. But you have to go through putting it in place. Then you have to setup S3, probably stick a caching layer in there somewhere. It can get pretty time consuming, especially if you're doing it frequently.

Cloudinary fixes that problem.

It offers a media manager, cloud storage, on-the-fly asset manipulations and transformations, and much more. The only thing you have to worry about is keeping track of the asset in the database.

Actually, that's a lie. You don't even have to worry about that, because this module takes care of that for you.

Provide Cloudinary config

You'll need to provide the Cloud Name, API Key, and API Secret. These values are the core requirements that enables the module to talk to Cloudinary.

Put these values in any YAML file you may be using to configure other parts of SilverStripe.

I believe a fresh install of SilverStripe comes with a _config/mysite.yml file. If you're having trouble fiding this, you may have renamed it.

Create database fields

The provides support for six database fields:

Use these as you would use any other database fields – add an entry in the $db static:

The beauty of these fields is at their core they're just text fields, so absolutely no relationships or additional tables.

Set form fields

All classes that extends DataObject excluding SiteTree should automatically scaffold the necessary form field based on the database field.

For SiteTree extended classes, including Page, the form fields must be manually provided via getCMSFields:

Additional methods

ImageField, MediaField, and FileField provides the following methods:

Method Description Default
->setMultiple(boolean $multiple) Sets the field to accept multiple files - for use where CloudinaryImage, CloudinaryMedia, CloudinaryFile database fields are used. false
->setMaxFiles(int $maxFiles) Sets the maximum number of files that can be chosen when a field is set to accept multiple files. 25
->setButtonLabelSingular(string $label) Sets what label appears on the Cloudinary picker button for single asset mode. Choose Image for ImageField
Choose Media for MediaField
Choose File for FileField
->setButtonLabelPlural(string $label) Sets what label appears on the Cloudinary picker button for multiple asset mode. Choose Images for ImageField
Choose Media for MediaField
Choose Files for FileField
->setFields(array $fields) Sets what supplementary fields are shown along with the Cloudinary picker to provide additional information about the asset (see below for list of supported fields). BaseField::FIELD_TITLE, BaseField::FIELD_DESCRIPTION, and BaseField::FIELD_CREDIT for ImageField
BaseField::FIELD_TITLE, and BaseField::FIELD_DESCRIPTION for MediaField
BaseField::FIELD_TITLE for FileField

List of supplementary fields supported by each core field type

Field ImageField MediaField FileField
BaseField::FIELD_TITLE
BaseField::FIELD_DESCRIPTION
BaseField::FIELD_CREDIT
BaseField::FIELD_GRAVITY
BaseField::FIELD_FG_COLOUR
BaseField::FIELD_BG_COLOUR

Inline editor

The default media (ssmedia) handler in the WYSIWYG is replaced to use cloudinary as opposed to the Silverstripe Files browser

Additional Settings for inline editor

See Cloudinary's configuration options for reference to any of the below

default_transformations option

Set to an array of objects (automatically wrapped in the extra array in the JS).

Rendering the assets

To give the developer more control over how they use the asset, this module will simply output the URL to the asset instead of outputting any HTML tags.

There's not an easy way to go around outputting a HTML tag directly, because each site may have a different requirement, and it's simply not enough to just output an img tag in the day of modern web development – we now have to consider different screen sizes, alternative file formats, etc.

It's just easier to give the developer a URL and they choose to deal with that as they please.

Images

Render an image as is:

The description in this example is one of the supplementary fields.

Render a resized image:

Render a picture tag for better device support and art direction:

Supported transformations
Transformation Description
$Fill(width, height, gravity)
$FillByWidth(width, gravity)
$FillByHeight(height, gravity)
$LimitFill(width, height, gravity)
$LimitFillByWidth(width, gravity)
$LimitFillByHeight(height, gravity)
$Crop(width, height, gravity)
$CropByWidth(width, gravity)
$CropByHeight(height, gravity)
$Thumb(width, height, gravity)
$ThumbByWidth(width, gravity)
$ThumbByHeight(height, gravity)
$Scale(width, height, aspectRatio)
$ScaleByWidth(width, aspectRatio)
$ScaleByHeight(height, aspectRatio)
$Fit(width, height, aspectRatio)
$FitByWidth(width, aspectRatio)
$FitByHeight(height, aspectRatio)
$Limit(width, height, aspectRatio)
$LimitByWidth(width, aspectRatio)
$LimitByHeight(height, aspectRatio)
$MinimumFit(width, height, aspectRatio)
$MinimumFitByWidth(width, aspectRatio)
$MinimumFitByHeight(height, aspectRatio)
$Quality(quality)
$Format(format)
$DPR(dpr)

Videos

Render a cross-browser compatible video:

Supported transformations
Transformation Description
$Fill(width, height, gravity)
$FillByWidth(width, gravity)
$FillByHeight(height, gravity)
$Crop(width, height, gravity)
$CropByWidth(width, gravity)
$CropByHeight(height, gravity)
$Scale(width, height, aspectRatio)
$ScaleByWidth(width, aspectRatio)
$ScaleByHeight(height, aspectRatio)
$Fit(width, height, aspectRatio)
$FitByWidth(width, aspectRatio)
$FitByHeight(height, aspectRatio)
$Limit(width, height, aspectRatio)
$LimitByWidth(width, aspectRatio)
$LimitByHeight(height, aspectRatio)
$Quality(quality)
$Format(format)
$VideoCodec(videoCodec)
$BitRate(bitRate)
$VideoSampling(videoSampling)
$AudioCodec(audioCodec)
$AudioFrequency(audioFrequency)

Files

Render a download link for a file:

Supported transformations

Cloudinary has no support for transforming files.

Supplementary methods

In addition to the transformation methods, the module also exposes additional methods to help output information about the asset themselves.

Some of these are available for all fields as standard while others can be filled in by content editors, given the corresponding fields have been enabled using the ->setFields method documented above.

Method Description Images Media Files
->getPublicID() or $PublicID Returns the Cloudinary ID of the resource.
->getName() or $Name Returns the uploaded name of the resource.
->getTitle() or $Title Returns the friendly name of the resource if enabled and filled in otherwise will fallback to the name.
->getDescription() or $Description Returns the description of the resource if enabled and filled in.
->getFormat() or $Format Returns the file format of the resource.
->getResourceType() or $ResourceType Returns the Cloudinary resource type. Will be either image, media, or raw.
->getActualType() or $ActualType Returns the actual type of the resource. This exists to differenciate between audio and video since Cloudinary refers to them as simply media. Will be either image, video, audio, or raw.
->getVersion() or $Version Returns the Cloudinary version of the resource.
->getFileSize() or $FileSize Returns the file size of the resource in bytes.
->getFriendlyFileSize() or $FriendlyFileSize Returns the human readable file size of the resource e.g. 20K, 1M, etc.
->getCredit() or $Credit Returns the copyright attribution of the resource if enabled and filled in. The module will automatically try to find the attribution from resource meta data such as the exif data from a photo.
->getTopColours() or $TopColours Returns a list of most predominant colours from an image. See Predominant Colours for more details.
->getForegroundColour() or $ForegroundColour Returns the foreground colour if enabled and selected.
->getBackgroundColour() or $BackgroundColour Returns the background colour if enabled and selected.
->getDuration or $Duration Returns the duration of a video or audio resource.

Global configuration

Some global configuration options are provided in case your requirements don't change across the project, or to further enhance the module.

These can go inside a YAML file you may be using to configure your SilverStripe such as the _config/mysite.yml.

Multi resource fields

As mentioned above, using the ->setMultiple(boolean $multiple) method on one of the three fields enables support to select multiple resources from Cloudinary. This is great for instances where you're building a carousel, or providing a list of downloads.

At it's core, all this really does is provide each chosen resource as an iterator that can be looped through in the template. The methods, transformation or otherwise, available on each individual resource within the list remains the same as documented above, however, enabling this mode does expose the ->getLink() or $Link method which can be used to let the end-user download all the assets in single zipped file.

Example usuage:

Retaining transformations

By default, the module will skip any user applied transformations on resources to give the developer more control over how they wish the assets to be displayed.

The reasoning behind this is the developer should control the overall look of the assets including, but not limited to, setting the sizes, crops, effects, etc.

But, we're also aware some content editors may wish to have at least some control over how they want their images to appear, so they may wish to use the media library to pick out their transformations before inserting the asset.

A sensible middle ground to overcome this issue is to let the developer specify a list of transformations that can be applied by content editors.

The module exposes the following configuration option to make this possible:

Only the transformations mentioned in the supported transformations documented previously can be retained for the time being. This may change as we add more supported transformations.

Predominant Colours

When an image is selected, the module will automatically extract the most predominant colours from it. This is returned as an ArrayList so it can be both easily looped through in templates or in PHP code. This can be accessed by ->getTopColours() or $TopColours.

The ArrayList is ordered by how predominant a colour is with most predominant being first, and least being the last.

Each item within the array is comprised of Predominance and a neat Colour object that provides a nice selection of helper functions to allow easy manipulation of the colour:

Method Description
->getColour() or $Colour Colour string e.g. #775313
->getProminence() or $Prominence How predominant a colour is e.g. 12.8
->getHex() or $Hex Hex representation of the colour e.g. #775313
->getHsl() or $Hsl HSL representation of the colour e.g. hsl(38,72%,27%)
->getHsla() or $Hsla HSL representation of the colour with alpha transparency e.g. hsla(38,72%,27%,1)
->getHsv() or $Hsv HSV representation of the colour e.g. hsv(38,84%,47%)
->getRgb() or $Rgb RGB representation of the colour e.g. rgb(119,83,19)
->getRgba() or $Rgba RGB representation of the colour with alpha transparency e.g. rgba(119,83,19,1)
->Saturate($percent) or $Saturate(percent) Saturates the base colour by percent e.g. #7d540c
->Desaturate($percent) or $Desaturate(percent) Desaturates the base colour by percent e.g. #70501a
->Grayscale() or $Grayscale Grayscale version of the base colour e.g. #454545
->Brighten($percent) or $Brighten(percent) Brighten the base colour by percent e.g. #916d2d
->Lighten($percent) or $Lighten(percent) Lighten the base colour by percent e.g. #a2701a
->Darken($percent) or $Darken(percent) Darken the base colour by percent e.g. #4b340c
->IsLight() or $IsLight Is the base colour light e.g. false (or nothing in template)
->IsDark() or $IsDark Is the base colour dark e.g. true (or 1 in template)
->Spin($percent) or $Spin(percent) Spin the base colour by percent e.g. #766313
->Tint($percent) or $Tint(percent) Mix the base colour with white by percent e.g. #85642b
->Shade($percent) or $Shade(percent) Mix the base colour with black by percent e.g. #6b4b11
->Fade($percent) or $Fade(percent) Set the absolute opacity of the base colour by percent e.g. rgba(119,83,19,0.1)
->FadeIn($percent) or $FadeIn(percent) Increase the opacity of the base colour by percent e.g. rgba(119,83,19,1)
->FadeOut($percent) or $FadeOut(percent) Decrease the opacity of the base colour by percent e.g. rgba(119,83,19,0.9)

The base colour used for above examples was #775313 and all enhancements were made by 10 percent.

It's worth noting that all methods here that returns a colour will return a Colour object so you can effectively carry out chained manipulations e.g. $Grayscale.Darken(10).FadeOut(10). When used in PHP, Colour can be cast as a string to get the literal value. The type of colour format (rgb, hex, etc.) will depend on the original input colour and/or the manipulation method.

The module uses Iris to provide colour manipulation and conversion functionality.

Contributing

This version of the module is still in its infancy. We will flesh it out as our scope increases. If you think there's something we're missing out on, feel free to raise an issue and we'll be happy to review and see if it can be accommodated.

Todo

[^1]: Due to limitation of Cloudinary, audio and videos both have the resource type of video. It's a minor inconvinience but the module exposes the getActualType method which will help differenciate the two when rendering.

Migration

If you are migrating from the prior (non-widget) version of the code that made use of the Silverstripe filesystem and the MadeHQ\Cloudinary\Model\ImageLink or MadeHQ\Cloudinary\Model\FileLink classes for relationships then you can run the following 2 tasks to migrate the data to the new format. Note: you will need to make code changes in the PHP files

Step 1:

Run the dev/tasks/MadeHQ-Cloudinary-Tasks-MigrationTaskStep1 task. This will give you a list of files/classes that are using MadeHQ\Cloudinary\Model\FileLink or a decendent in the has_one or many_many relationships

Step 2:

Update the code base to move the has_one and many_many fields into db with an appropriate new field type (see Create database fields above).

Other code changes required would include changing calls to ::<ImageFieldName>() to ::dbObject('<ImageFieldName>') (this could possibly be done via the ::__call() magic method but will leave that to individuals)

Step 3:

Run dev/build?flush=all to generate the new fields. Due to the legacy fields being relationships there is no worry about a conflict with field names.

Step 4:

Run the dev/tasks/MadeHQ-Cloudinary-Tasks-MigrationTaskStep2 task. This will get the PublicID from the legacy relationship and request the file data directly from Cloudinary via the Admin API.

NOTE: There is a limit of 2000 API requests per hour that can be made to cloudinary. There is currently no way to re-start the process if you hit this limit (possibly need to look into this). It seems that it is possible to raise the limit by contacting Cloudinary


All versions of silverstripe-cloudinary with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
cloudinary/cloudinary_php Version ^2.4
ozdemirburak/iris Version ^2.4
silverstripe/framework Version ^5.1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mademedia/silverstripe-cloudinary contains the following files

Loading the files please wait ....