Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
63a0231e
Commit
63a0231e
authored
Sep 26, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: according to crash reoirts DynDNS widget can race
Fix a few style errors while there.
parent
4e83616c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
19 deletions
+21
-19
dyn_dns_status.widget.php
src/www/widgets/widgets/dyn_dns_status.widget.php
+21
-19
No files found.
src/www/widgets/widgets/dyn_dns_status.widget.php
View file @
63a0231e
...
...
@@ -45,36 +45,38 @@ if (!empty($_REQUEST['getdyndnsstatus'])) {
if
(
$first_entry
)
{
$first_entry
=
false
;
}
else
{
// Put a vertical bar delimiter between the echoed HTML for each entry processed.
echo
"|"
;
// Put a vertical bar delimiter between the echoed HTML for each entry processed.
echo
'|'
;
}
$filename
=
"/conf/dyndns_
{
$dyndns
[
'interface'
]
}{
$dyndns
[
'type'
]
}
"
.
escapeshellarg
(
$dyndns
[
'host'
])
.
"
{
$dyndns
[
'id'
]
}
.cache"
;
$filename_v6
=
"/conf/dyndns_
{
$dyndns
[
'interface'
]
}{
$dyndns
[
'type'
]
}
"
.
escapeshellarg
(
$dyndns
[
'host'
])
.
"
{
$dyndns
[
'id'
]
}
_v6.cache"
;
if
(
file_exists
(
$filename
)
&&
!
empty
(
$dyndns
[
'enable'
]))
{
$ipaddr
=
dyndnsCheckIP
(
$dyndns
[
'interface'
]);
$cached_ip_s
=
preg_split
(
'/:/'
,
file_get_contents
(
$filename
));
$cached_ip
=
$cached_ip_s
[
0
];
if
(
$ipaddr
<>
$cached_ip
)
{
echo
"<font color='red'>"
;
}
else
{
echo
"<font color='green'>"
;
$fdata
=
@
file_get_contents
(
$filename
);
if
(
!
empty
(
$fdata
))
{
$cached_ip_s
=
preg_split
(
'/:/'
,
$fdata
);
$cached_ip
=
$cached_ip_s
[
0
];
echo
sprintf
(
'<font color="%s">%s</font>'
,
$ipaddr
!=
$cached_ip
?
'red'
:
'green'
,
htmlspecialchars
(
$cached_ip
)
);
}
echo
htmlspecialchars
(
$cached_ip
);
echo
"</font>"
;
}
elseif
(
file_exists
(
$filename_v6
)
&&
!
empty
(
$dyndns
[
'enable'
]))
{
$ipv6addr
=
get_interface_ipv6
(
$dyndns
[
'interface'
]);
$cached_ipv6_s
=
explode
(
"|"
,
file_get_contents
(
$filename_v6
));
$cached_ipv6
=
$cached_ipv6_s
[
0
];
if
(
$ipv6addr
<>
$cached_ipv6
)
{
echo
"<font color='red'>"
;
}
else
{
echo
"<font color='green'>"
;
$fdata6
=
@
file_get_contents
(
$filename_v6
);
if
(
!
empty
(
$fdata6
))
{
$cached_ipv6_s
=
explode
(
'|'
,
$fdata6
);
$cached_ipv6
=
$cached_ipv6_s
[
0
];
echo
sprintf
(
'<font color="%s">%s</font>'
,
$ipv6addr
!=
$cached_ipv6
?
'red'
:
'green'
,
htmlspecialchars
(
$cached_ipv6
)
);
}
echo
htmlspecialchars
(
$cached_ipv6
);
echo
"</font>"
;
}
else
{
echo
'<span class="text-muted">'
.
gettext
(
'N/A'
)
.
'</span>'
;
echo
sprintf
(
'<span class="text-muted">%s</span>'
,
gettext
(
'N/A'
))
;
}
}
exit
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment