Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automatic_updates
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
automatic_updates
Merge requests
!67
Issue
#3241380
: Ensure DB updates are not pending
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3241380
: Ensure DB updates are not pending
issue/automatic_updates-3241380:3241380-db-updates-check
into
8.x-2.x
Overview
8
Commits
7
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Merged
Ted Bowman
requested to merge
issue/automatic_updates-3241380:3241380-db-updates-check
into
8.x-2.x
3 years ago
Overview
8
Commits
7
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
8.x-2.x
version 7
3cffa051
3 years ago
version 6
a3ce9d06
3 years ago
version 5
fa2b38d2
3 years ago
version 4
00f76478
3 years ago
version 3
5c4426e5
3 years ago
version 2
3c0e74b9
3 years ago
version 1
2782f98f
3 years ago
8.x-2.x (base)
and
latest version
latest version
3cffa051
7 commits,
3 years ago
version 7
3cffa051
7 commits,
3 years ago
version 6
a3ce9d06
6 commits,
3 years ago
version 5
fa2b38d2
5 commits,
3 years ago
version 4
00f76478
4 commits,
3 years ago
version 3
5c4426e5
3 commits,
3 years ago
version 2
3c0e74b9
2 commits,
3 years ago
version 1
2782f98f
1 commit,
3 years ago
5 files
+
205
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/Validator/PendingUpdatesValidator.php
0 → 100644
+
84
−
0
Options
<?php
namespace
Drupal\automatic_updates\Validator
;
use
Drupal\automatic_updates
\AutomaticUpdatesEvents
;
use
Drupal\automatic_updates
\Event\UpdateEvent
;
use
Drupal\automatic_updates
\Validation\ValidationResult
;
use
Drupal\Core\StringTranslation\StringTranslationTrait
;
use
Drupal\Core\StringTranslation\TranslationInterface
;
use
Drupal\Core\Update\UpdateRegistry
;
use
Drupal\Core\Url
;
use
Symfony\Component\EventDispatcher\EventSubscriberInterface
;
/**
* Validates that there are no pending database updates.
*/
class
PendingUpdatesValidator
implements
EventSubscriberInterface
{
use
StringTranslationTrait
;
/**
* The Drupal root.
*
* @var string
*/
protected
$appRoot
;
/**
* The update registry service.
*
* @var \Drupal\Core\Update\UpdateRegistry
*/
protected
$updateRegistry
;
/**
* Constructs an PendingUpdatesValidator object.
*
* @param string $app_root
* The Drupal root.
* @param \Drupal\Core\Update\UpdateRegistry $update_registry
* The update registry service.
* @param \Drupal\Core\StringTranslation\TranslationInterface $translation
* The translation service.
*/
public
function
__construct
(
string
$app_root
,
UpdateRegistry
$update_registry
,
TranslationInterface
$translation
)
{
$this
->
appRoot
=
$app_root
;
$this
->
updateRegistry
=
$update_registry
;
$this
->
setStringTranslation
(
$translation
);
}
/**
* Validates that there are no pending database updates.
*
* @param \Drupal\automatic_updates\Event\UpdateEvent $event
* The update event.
*/
public
function
checkPendingUpdates
(
UpdateEvent
$event
)
{
require_once
$this
->
appRoot
.
'/core/includes/install.inc'
;
require_once
$this
->
appRoot
.
'/core/includes/update.inc'
;
drupal_load_updates
();
$hook_updates
=
update_get_update_list
();
$post_updates
=
$this
->
updateRegistry
->
getPendingUpdateFunctions
();
if
(
$hook_updates
||
$post_updates
)
{
$message
=
$this
->
t
(
'Some modules have database schema updates to install. You should run the <a href=":update">database update script</a> immediately.'
,
[
':update'
=>
Url
::
fromRoute
(
'system.db_update'
)
->
toString
(),
]);
$error
=
ValidationResult
::
createError
([
$message
]);
$event
->
addValidationResult
(
$error
);
}
}
/**
* {@inheritdoc}
*/
public
static
function
getSubscribedEvents
()
{
return
[
AutomaticUpdatesEvents
::
PRE_START
=>
'checkPendingUpdates'
,
AutomaticUpdatesEvents
::
READINESS_CHECK
=>
'checkPendingUpdates'
,
];
}
}
Loading