Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
noblogs-cli
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Noblogs
noblogs-cli
Commits
62b3b880
Commit
62b3b880
authored
2 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Handle unsafe (plugin) cron events by spawning wp-cli
parent
2a847109
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/cron.php
+29
-1
29 additions, 1 deletion
lib/cron.php
with
29 additions
and
1 deletion
lib/cron.php
+
29
−
1
View file @
62b3b880
<?php
function
is_hook_safe
(
$hook
)
{
if
(
strlen
(
$hook
)
>
2
&&
substr
(
$hook
,
0
,
3
)
==
"wp_"
)
{
return
true
;
}
if
(
$hook
==
"delete_expired_transients"
)
{
return
true
;
}
return
false
;
}
// Run cron jobs for the current blog.
// (Use switch_to_blog() before calling this).
// (Use switch_to_blog() before calling this).
//
// We can deal with core Wordpress events inline, but not with events
// associated with plugins, as they aren't properly loaded when
// switch_to_blog() is called. So we detect when "unsafe" events
// should be scheduled, and only for those blogs we spawn a wp-cli
// process (much slower) to run them in the specific context of the
// blog.
function
noblogs_run_cron_for_current_blog
()
{
$crons
=
wp_get_ready_cron_jobs
();
$has_unsafe_hooks
=
false
;
foreach
(
$crons
as
$timestamp
=>
$cronhooks
)
{
foreach
(
$cronhooks
as
$hook
=>
$keys
)
{
if
(
!
is_hook_safe
(
$hook
))
{
$has_unsafe_hooks
=
true
;
continue
;
}
foreach
(
$keys
as
$k
=>
$v
)
{
echo
"
{
$k
}
->
{
$hook
}
()
\n
"
;
$schedule
=
$v
[
'schedule'
];
...
...
@@ -28,4 +50,10 @@ function noblogs_run_cron_for_current_blog() {
}
}
}
if
(
$has_unsafe_hooks
)
{
$domain
=
get_option
(
'domain'
);
echo
" executing wp-cli for unsafe hooks (
{
$domain
}
)"
;
system
(
"wp cron event run --due-now --url=
{
$domain
}
"
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment