Migrating from gorriecoe/silverstripe-linkfield
There are a few major changes between gorriecoe/silverstripe-linkfield
and silverstripe/linkfield
:
- Link types are defined via subclasses in
silverstripe/linkfield
as opposed to configuration within a single model. silverstripe/linkfield
doesn't supportmany_many
relations - these will be migrated tohas_many
relations instead.- Many fields and relations have different names.
-
The default title for a link isn't stored in the database - if the
LinkText
field is left blank, nothing gets stored in the database for that field.- This means any links migrated which had the default title set will be migrated with that title as explicit
LinkText
, which will not update automatically when you change the link URL. - If you want the
LinkText
for those links to update automatically, you will need to either customise the migration or manually unset theLinkText
for those links afterward.
- This means any links migrated which had the default title set will be migrated with that title as explicit
The following additional items were identified as feature gaps, which may require some additional work to implement if you require them:
- The phone number for
PhoneLink
isn't validated, except to ensure there is a value present. PhoneLink
doesn't have template helper methods for itsPhone
database field.-
The
ExternalLink
type doesn't allow relative URLs.- Any existing relative URLs will be migrated with their relative paths intact, but editing them will require updating them to be absolute URLs.
- There are no
addExtraClass()
or related methods for templates. If the default templates and CSS classnames don't suit your requirements you will need to override them. - There are no
SiteTree
helpers likeisCurrent()
,isOrphaned()
etc. You can call those methods on thePage
relation inSiteTreeLink
instead. - There is no
link_to_folders
configuration -FileLink
usesUploadField
instead which doesn't allow linking to folders. - There are no GraphQL helper methods or pre-existing GraphQL schema - just use regular GraphQL scaffolding if you need to fetch the links via GraphQL.
- You can't change the type of a link after creating it.
- The
DefineableMarkupID
andDBStringLink
classes have no equivalent insilverstripe/linkfield
.
This guide will help you migrate to silverstripe/linkfield
and run a task that will automatically update your data.
This guide and the associated migration task assume all of the data for your links are in the base table for gorriecoe\Link\Models\Link
or in automatically generated tables (e.g. join tables for many_many
relations).
If you have subclassed gorriecoe\Link\Models\Link
, there may be additional steps you need to take to migrate the data for your subclass.
Setup
We strongly recommend taking a backup of your database before doing anything else. This will ensure you have a known state to revert to in case anything goes wrong.
Update your dependencies
Remove the gorriecoe modules and add silverstripe/linkfield
:
composer remove gorriecoe/silverstripe-link gorriecoe/silverstripe-linkfield
composer require silverstripe/linkfield:^4
Configure the migration task
Be sure to check how the old module classes are referenced in config yml
files (eg: app/_config
). Update appropriately.
-
Enable the task:
SilverStripe\LinkField\Tasks\GorriecoeMigrationTask: is_enabled: true
-
Declare any columns that you added to the gorriecoe link model which need to be migrated to the new base link table, for example if you added a custom sort column for your
has_many
relations:SilverStripe\LinkField\Tasks\GorriecoeMigrationTask: # ... base_link_columns: MySortColumn: 'Sort'
-
Declare any
has_many
relations that need to be migrated:SilverStripe\LinkField\Tasks\GorriecoeMigrationTask: # ... has_many_links_data: # The class where the has_many relation is declared App\Model\MyClass: # The key is the name of the has_many relation # The value is the name of the old has_one relation on the gorriecoe link model LinkListOne: 'MyOwner'
-
Declare any
many_many
relations that need to be migrated:SilverStripe\LinkField\Tasks\GorriecoeMigrationTask: # ... many_many_links_data: # The class where the many_many relation is declared App\Model\MyClass: # If it's a normal many_many relation with no extra fields, # you can simply set the value to null and let the migration task figure it out LinkListExample: null # If the many_many is a many_many through, or had a $many_many_extraFields configuration defined, # you will need to provide additional information LinkListTwo: # The table is required for many_many through table: 'Page_ManyManyLinks' # Extra fields is for $many_many_extraFields, or for any $db fields on a # many_many through join model extraFields: MySort: 'Sort' # For many_many through relations, you must add the names of the has_one relations # from the DataObject which was used as the join model through: from: 'FromHasOneName' to: 'ToHasOneName'
-
Declare any classes that may have
has_one
relations toLink
, but which do not own the link. Classes declared here will include any subclasses. For example if a custom link has ahas_many
relation to some class which does not own the link, declare that class here so it is not incorrectly identified as the owner of the link:SilverStripe\LinkField\Tasks\GorriecoeMigrationTask: # ... classes_that_are_not_link_owners: - App\Model\SomeClass
Update your codebase
You should review how you are using the original Link
model and LinkField
, but if you don't have any customisations, then replacing the old with the new might be quite simple.
-
If you added any database columns to the
Link
class for sortinghas_many
relations, or anyhas_one
relations for storing them, remove the extension or YAML configuration for that now.- gorriecoe\Link\Models\Link: - db: - MySortColumn: Int - has_one: - MyOwner: App\Model\MyClass - belongs_many_many: - BelongsRecord : App\Model\MyClass.LinkListTwo
-
Update use statements and relations for the classes which own links.
- Any
many_many
relations should be swapped out forhas_many
relations, and allhas_many
relations should point to theOwner
relation on the link class via dot notation. - If the models that have
has_one
orhas_many
relations to link don't already use the$owns
configuration for those relations, add that now. You may also want to set$cascade_deletes
and$cascade_duplicates
configuration. See basic usage for more details.
namespace App\Model; - use gorriecoe\Link\Models\Link; - use gorriecoe\LinkField\LinkField; + use SilverStripe\LinkField\Models\Link; + use SilverStripe\LinkField\Form\LinkField; + use SilverStripe\LinkField\Form\MultiLinkField; use SilverStripe\ORM\DataObject; class MyClass extends DataObject { private static array $has_one = [ 'HasOneLink' => Link::class, ]; private static array $has_many = [ - 'LinkListOne' => Link::class . '.MyOwner', + 'LinkListOne' => Link::class . '.Owner', + 'LinkListTwo' => Link::class . '.Owner', ]; + private static array $owns = [ + 'HasOneLink', + 'LinkListOne', + 'LinkListTwo', + ]; + - private static array $many_many = [ - 'LinkListTwo' => Link::class, - ]; - - private static array $many_many_extraFields = [ - 'LinkListTwo' => [ - 'MySort' => 'Int', - ] - ]; }
- Any
- If you had
many_many
through relation, delete theDataObject
class which was used as the join table. -
Update the usage of link fields.
public function getCMSFields() { $fields = parent::getCMSFields(); + $fields->removeByName(['HasOneLinkID', 'LinkListOne', 'LinkListTwo']); $fields->addFieldsToTab( 'Root.Main', [ - LinkField::create('HasOneLink', 'Has one link', $this), - LinkField::create('LinkListOne', 'List list one', $this)->setSortColumn('MySortColumn'), - LinkField::create('LinkListTwo', 'Link list two', $this)->setSortColumn('MySort'), + LinkField::create('HasOneLink', 'Has one link'), + MultiLinkField::create('LinkListOne', 'List list one'), + MultiLinkField::create('LinkListTwo', 'Link list two'), ] ); return $fields; }
-
If you applied linkfield configuration, update that now.
- See configuring links and link fields for more information.
+ use SilverStripe\LinkField\Models\ExternalLink; + use SilverStripe\LinkField\Models\SiteTreeLink; - $linkConfig = [ - 'types' => [ - 'SiteTree', - 'URL', - ], - 'title_display' => false, - ]; - $linkField->setLinkConfig($linkConfig); + $allowedTypes = [ + SiteTreeLink::class, + ExternalLink::class, + ]; + $linkField->setAllowedTypes($allowedTypes); + $linkField->setExcludeLinkTextField(true);
Customising the migration
There are many extension hooks in the GorriecoeMigrationTask
class which you can use to change its behaviour or add additional migration steps. We strongly recommend taking a look at the source code to see if your use case requires any customisations.
Some scenarios where you may need customisations include:
- You had applied the
Versioned
extension toLink
and want to retain that versioning history - You subclassed the base
Link
model and need to migrate data from your custom subclass - You were relying on features of
gorriecoe/silverstripe-link
orgorriecoe/silverstripe-linkfield
which don't have a 1-to-1 equivalent insilverstripe/linkfield
Other customisations you may be using that will require manual migration or implementation include:
Custom links
If you have custom link implementations, you will need to implement an appropriate subclass of Link
(or apply an extension to an existing one) with appropriate database columns and relations.
You'll also need to add configuration to GorriecoeMigrationTask
so it knows how to handle the migration from the old link to the new one:
SilverStripe\LinkField\Tasks\GorriecoeMigrationTask:
# ...
link_type_columns:
# The name of the Type for your custom type as defined in gorriecoe/Link/Models/Link.types
MyCustomType:
# The FQCN for your new custom link subclass
class: 'App\Model\Link\MyCustomLink'
# An mapping of column names from the gorriecoe link to your link subclass
# Only include columns that are defined in the $db configuration for your subclass
fields:
MyOldField: 'MyNewField'
Some custom link implementations you may be using include:
- gorriecoe/silverstripe-securitylinks
- gorriecoe/silverstripe-directionslink
- gorriecoe/silverstripe-advancedemaillink
Migrating
For databases that support transactions, the full data migration is performed within a single transaction, and any errors in the migration will result in rolling back all changes. This means you can address whatever caused the error and then run the task again.
We strongly recommend running this task in a local development environment before trying it in production. There may be edge cases that the migration task doesn't account for which need to be resolved.
-
Build the database and flush your cache
- via the browser:
https://www.example.com/dev/build?flush=1
- via a terminal:
sake db:build --flush
- via the browser:
-
Run the task
- via the browser:
https://www.example.com/dev/tasks/gorriecoe-to-linkfield-migration-task
- via a terminal:
sake tasks:gorriecoe-to-linkfield-migration-task
- via the browser:
The task performs the following steps:
- Inserts new rows into the base link table, taking values from the old link table.
- Inserts new rows into tables for link subclasses, taking values from the old link table.
- Updates
SiteTreeLink
records, splitting out the oldAnchor
column into the separateAnchor
andQueryString
columns. - Migrates any
has_many
relations which were declared inGorriecoeMigrationTask.has_many_links_data
. - Migrates any
many_many
relations which were declared in inGorriecoeMigrationTask.many_many_links_data
and drops the old join tables. - Set the
Owner
relation forhas_one
relations to links. - Drops the old link table.
- Publishes all links, unless you have removed the
Versioned
extension. -
Output a table with any links which are lacking the data required to generate a URL.
- You can skip this step by adding
?skipBrokenLinks=1
to the end of the URL:https://www.example.com/dev/tasks/gorriecoe-to-linkfield-migration-task?skipBrokenLinks=1
. - If you're running the task in a terminal, you can add
--skipBrokenLinks
as an argument:sake tasks:gorriecoe-to-linkfield-migration-task --skipBrokenLinks
.
- You can skip this step by adding
If the same link appears in multiple many_many
relation lists within the same relation (with different owner records), the link will be duplicated so that a single link exists for each has_many
relation list.
Unless you were doing something custom to manage links it's unlikely this will affect you - but if it does, just be aware of this and prepare your content authors for this change in their authoring workflow.
If the same link appears in multiple many_many
relation lists across different relations, you will need to handle the migration of this scenario yourself. The migration task will not duplicate these links. The link's owner will be whichever record is first identified, and any further owner records will simply not have that link in their has_many
relation list.