pbot/lib/PBot/Utils/SafeFilename.pm

31 lines
687 B
Perl
Raw Normal View History

# File: SafeFilename.pm
#
# Purpose: for strings containing filenames, translates potentially unsafe
# characters into safe expansions; e.g. "foo/bar" becomes "foo&fslash;bar".
2021-07-11 00:00:22 +02:00
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
# SPDX-License-Identifier: MIT
2017-09-05 04:06:31 +02:00
package PBot::Utils::SafeFilename;
2020-02-15 23:38:32 +01:00
use PBot::Imports;
2017-09-05 04:06:31 +02:00
require Exporter;
2020-02-15 23:38:32 +01:00
our @ISA = qw/Exporter/;
2017-09-05 04:06:31 +02:00
our @EXPORT = qw/safe_filename/;
sub safe_filename {
my ($name) = @_;
2020-02-15 23:38:32 +01:00
my $safe = '';
2017-09-05 04:06:31 +02:00
2020-02-15 23:38:32 +01:00
while ($name =~ m/(.)/gms) {
if ($1 eq '&') { $safe .= '&amp;'; }
elsif ($1 eq '/') { $safe .= '&fslash;'; }
else { $safe .= $1; }
2017-09-05 04:06:31 +02:00
}
2020-02-15 23:38:32 +01:00
return lc $safe;
2017-09-05 04:06:31 +02:00
}
1;