Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_custom_blocks
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
WCMS
uw_custom_blocks
Commits
c6ca05a4
Commit
c6ca05a4
authored
3 weeks ago
by
Lily Yan
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-7265 Make aggregator remove items from the Web Resources feed that don't exist
parent
7cb9968f
No related branches found
No related tags found
1 merge request
!269
ISTWCMS-7265 Make aggregator remove items from the Web Resources feed that don't exist
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uw_custom_blocks.module
+38
-0
38 additions, 0 deletions
uw_custom_blocks.module
with
38 additions
and
0 deletions
uw_custom_blocks.module
+
38
−
0
View file @
c6ca05a4
...
...
@@ -304,6 +304,44 @@ function uw_custom_blocks_cron() {
\Drupal
::
state
()
->
set
(
'uw_custom_blocks.block_cache_clear_last_run'
,
$request_time
);
\Drupal
::
logger
(
'uw_custom_blocks'
)
->
notice
(
'Invalidate custom blocks cache tags.'
);
}
// Load all aggregator feeds.
$feeds
=
\Drupal
::
entityTypeManager
()
->
getStorage
(
'aggregator_feed'
)
->
loadMultiple
();
foreach
(
$feeds
as
$feed
)
{
// Check if the feed title matches 'Web-resources news'.
if
(
$feed
->
label
()
==
'Web-resources news'
)
{
// Fetch the current feed items.
$current_items
=
\Drupal
::
entityTypeManager
()
->
getStorage
(
'aggregator_item'
)
->
loadByProperties
([
'fid'
=>
$feed
->
id
()]);
// Fetch the latest feed data from the feed URL from
// the Aggregator source using the Guzzle HTTP client.
$client
=
\Drupal
::
httpClient
();
$response
=
$client
->
get
(
$feed
->
get
(
'url'
)
->
value
);
// Parse the XML response to get the latest feed data.
$latest_feed_data
=
simplexml_load_string
(
$response
->
getBody
()
->
getContents
());
// Process the latest feed data as needed.
// Compare and remove items no longer present in the current feed.
foreach
(
$current_items
as
$item
)
{
// Set the flag to FALSE.
$item_found
=
FALSE
;
// Loop through all latest feed data.
foreach
(
$latest_feed_data
->
channel
->
item
as
$latest_item
)
{
// If the current item is in the latest feed data.
if
(
$item
->
getTitle
()
==
(
string
)
$latest_item
->
title
)
{
// Set the flag to TRUE.
$item_found
=
TRUE
;
break
;
}
}
// If the flag is false, remove the current feed item.
if
(
!
$item_found
)
{
$item
->
delete
();
}
}
}
}
}
/**
...
...
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