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
3e722b9a
Commit
3e722b9a
authored
2 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Refactor fix-https command
Previously "https-siteurl", a somewhat opaque name.
parent
ee0aa42f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/noblogs.in
+24
-31
24 additions, 31 deletions
bin/noblogs.in
with
24 additions
and
31 deletions
bin/noblogs.in
+
24
−
31
View file @
3e722b9a
...
...
@@ -58,7 +58,7 @@ Known commands:
-mail sends email to ai-changes@investici.org
-json print JSON output
https
-siteurl
BLOG
fix-
https BLOG
Adds https (instead of http) to siteurl and home options.
fix-cdn BLOG
...
...
@@ -386,39 +386,32 @@ function do_check_updates($args) {
}
// replaces http with https, and removes ending slash
function
add_https_to_uri
(
$uri
){
$re
=
"#^http[s]?://([^.]+\.noblogs\.org)[/]?$#i"
;
$subst
=
"https://$1"
;
return
preg_replace
(
$re
,
$subst
,
$uri
);
}
// adds https to siteurl and home options (and also flattrs custom image)
function
do_https_siteurl
(
$args
){
$field_to_update
=
array
(
'home'
,
'siteurl'
,
'flattrss_custom_image_url'
);
foreach
(
$args
as
$arg
)
{
$blog
=
noblogs_get_blog
(
$arg
);
if
(
!
$blog
)
{
echo
"Blog
{
$arg
}
not found.
\n
"
;
continue
;
}
switch_to_blog
(
$blog
->
blog_id
);
foreach
(
$field_to_update
as
$field
){
$old
=
get_option
(
$field
);
if
(
$old
===
false
){
continue
;
}
$new
=
add_https_to_uri
(
$old
);
if
(
$old
===
$new
){
continue
;
}
update_option
(
$field
,
$new
);
}
function
do_fix_https
(
$args
){
$fields_to_update
=
array
(
'home'
,
'siteurl'
,
'flattrss_custom_image_url'
);
foreach
(
$args
as
$arg
)
{
$blog
=
noblogs_get_blog
(
$arg
);
if
(
!
$blog
)
{
echo
"Blog
{
$arg
}
not found.
\n
"
;
continue
;
}
switch_to_blog
(
$blog
->
blog_id
);
echo
"
{
$arg
}
\n
"
;
restore_current_blog
();
foreach
(
$fields_to_update
as
$field
)
{
$old_value
=
get_option
(
$field
);
if
(
$old_value
===
false
)
{
continue
;
}
$new_value
=
str_replace
(
"http://"
,
"https://"
,
$old_value
);
if
(
$old_value
===
$new_value
){
continue
;
}
update_option
(
$field
,
$new_value
);
}
echo
"
{
$arg
}
\n
"
;
restore_current_blog
();
}
}
// rewrites the correct settings for the CDN
...
...
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