1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
|
# This code is a part of Slash, and is released under the GPL.
# Copyright 1997-2001 by Open Source Development Network. See README
# and COPYING for more information, or see http://slashcode.com/.
# $Id: Data.pm,v 1.1.2.39 2002/07/03 17:06:09 pudge Exp $
package Slash::Utility::Data;
=head1 NAME
Slash::MODULE - SHORT DESCRIPTION for Slash
=head1 SYNOPSIS
use Slash::Utility;
# do not use this module directly
=head1 DESCRIPTION
LONG DESCRIPTION.
=head1 EXPORTED FUNCTIONS
=cut
use strict;
use Date::Format qw(time2str);
use Date::Language;
use Date::Parse qw(str2time);
#use Date::Manip qw(DateCalc UnixDate Date_Init);
use Digest::MD5 'md5_hex';
use HTML::Entities;
use HTML::FormatText;
use HTML::TreeBuilder;
use Safe;
use Slash::Utility::Environment;
use URI;
use XML::Parser;
use base 'Exporter';
use vars qw($VERSION @EXPORT);
($VERSION) = ' $Revision: 1.1.2.39 $ ' =~ /\$Revision:\s+([^\s]+)/;
@EXPORT = qw(
addDomainTags
parseDomainTags
balanceTags
changePassword
chopEntity
encryptPassword
fixHref
fixint
fixparam
fixurl
fudgeurl
formatDate
getArmoredEmail
html2text
root2abs
strip_anchor
strip_attribute
strip_code
strip_extrans
strip_html
strip_literal
strip_mode
strip_nohtml
strip_notags
strip_plaintext
timeCalc
url2abs
xmldecode
xmlencode
xmlencode_plain
);
# really, these should not be used externally, but we leave them
# here for reference as to what is in the package
# @EXPORT_OK = qw(
# approveTag
# breakHtml
# stripBadHtml
# stripByMode
# );
use constant NOTAGS => -3;
use constant ATTRIBUTE => -2;
use constant LITERAL => -1;
use constant NOHTML => 0;
use constant PLAINTEXT => 1;
use constant HTML => 2;
use constant EXTRANS => 3;
use constant CODE => 4;
use constant ANCHOR => -4;
#========================================================================
=head2 root2abs()
Convert C<rootdir> to its absolute equivalent. By default, C<rootdir> is
protocol-inspecific (such as "//www.example.com") and for redirects needs
to be converted to its absolute form. There is an C<absolutedir> var, but
it is protocol-specific, and we want to inherit the protocol. So if
C<$ENV{HTTPS}> is true, we use HTTPS, else we use HTTP.
=over 4
=item Return value
rootdir variable, converted to absolute with proper protocol.
=back
=cut
sub root2abs {
my $rootdir = getCurrentStatic('rootdir');
if ($rootdir =~ m|^//|) {
$rootdir = ($ENV{HTTPS} ? 'https:' : 'http:') . $rootdir;
}
return $rootdir;
}
#========================================================================
=head2 url2abs(URL)
Take URL and make it absolute. It takes a URL,
and adds rootdir to the beginning if necessary, and
adds the protocol to the beginning if necessary, and
then uses URI->new_abs() to get the correct string.
=over 4
=item Parameters
=over 4
=item URL
URL to make absolute.
=back
=item Return value
Fixed URL.
=back
=cut
sub url2abs {
my($url) = @_;
if (getCurrentStatic('rootdir')) { # rootdir strongly recommended
my $rootdir = root2abs($url);
$url = URI->new_abs($url, $rootdir)->canonical->as_string;
} elsif ($url !~ m|^https?://|i) { # but not required
$url =~ s|^/*|/|;
}
return $url;
}
#========================================================================
=head2 formatDate(DATA [, COLUMN, AS, FORMAT])
Converts dates from the database; takes an arrayref of rows.
This example would take the 1th element of each arrayref in C<$data>, format it,
and put the result in the 2th element.
formatDate($data, 1, 2);
This example would take the "foo" key of each hashref in C<$data>, format it,
and put the result in the "bar" key.
formatDate($data, 'foo', 'bar');
The C<timeCalc> function does the formatting.
=over 4
=item Parameters
=over 4
=item DATA
Data is either an arrayref of arrayrefs, or an arrayref of hashrefs.
Which it is will be determined by whether COLUMN is numeric or not. If
it is numeric, then DATA will be assumed to be an arrayref of arrayrefs.
=item COLUMN
The column to take the data from, to be translated. If numeric, then
DATA will be taken to be an arrayref of arrayrefs. Otherwise, the value
will be the hashref key. Default value is "date".
=item AS
The column where to put the newly formatted data. If COLUMN is numeric
and AS is not defined, then AS will be the same value as COLUMN. Otherwise,
the default value of AS is "time".
=item FORMAT
Optional Date::Format format string.
=back
=item Return value
True if successful, false if not.
=item Side effects
Changes values in DATA.
=item Dependencies
The C<timeCalc> function.
=back
=cut
sub formatDate {
my($data, $col, $as, $format) = @_;
errorLog('Not arrayref'), return unless ref($data) eq 'ARRAY';
if ($col && $col =~ /^\d+$/) { # LoL
$as = defined($as) ? $as : $col;
for (@$data) {
errorLog('Not arrayref'), return unless ref eq 'ARRAY';
$_->[$as] = timeCalc($_->[$col], $format);
}
} else { # LoH
$col ||= 'date';
$as ||= 'time';
for (@$data) {
errorLog('Not hashref'), return unless ref eq 'HASH';
$_->{$as} = timeCalc($_->{$col}, $format);
}
}
}
#========================================================================
=head2 timeCalc(DATE [, FORMAT, OFFSET])
Format time strings using user's format preference.
=over 4
=item Parameters
=over 4
=item DATE
Raw date from database.
=item FORMAT
Optional format to override user's format.
=item OFFSET
Optional positive or negative integer for offset seconds from GMT,
to override user's offset.
=back
=item Return value
Formatted date string.
=item Dependencies
The 'atonish' and 'aton' template blocks.
=back
=cut
sub timeCalc {
# raw mysql date of story
my($date, $format, $off_set) = @_;
my $user = getCurrentUser();
my(@dateformats, $err);
$off_set = $user->{off_set} unless defined $off_set;
# massage data for YYYYMMDDHHmmSS
$date =~ s/^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})$/$1-$2-$3 $4:$5:$6/;
# find out the user's time based on personal offset in seconds
$date = str2time($date) + $off_set;
# set user's language
my $lang = getCurrentStatic('datelang');
# convert the raw date to pretty formatted date
if ($lang && $lang ne 'English') {
my $datelang = Date::Language->new($lang);
$date = $datelang->time2str($format || $user->{'format'}, $date);
} else {
$date = time2str($format || $user->{'format'}, $date);
}
# return the new pretty date
return $date;
}
#========================================================================
=head2 changePassword()
Return new random 8-character password composed of 0..9, A..Z, a..z
(but not including possibly hard-to-read characters [0O1Iil]).
=over 4
=item Return value
Random password.
=back
=cut
{
my @chars = grep !/[0O1Iil]/, 0..9, 'A'..'Z', 'a'..'z';
sub changePassword {
return join '', map { $chars[rand @chars] } 0 .. 7;
}
}
#========================================================================
=head2 encryptPassword(PASSWD)
Encrypts given password. Currently uses MD5, but could change in the future,
so do not depend on implementation.
=over 4
=item Parameters
=over 4
=item PASSWD
Password to be encrypted.
=back
=item Return value
Encrypted password.
=back
=cut
sub encryptPassword {
my($passwd) = @_;
return md5_hex($passwd);
}
#========================================================================
=head2 stripByMode(STRING [, MODE, NO_WHITESPACE_FIX])
Private function. Fixes up a string based on what the mode is. This
function is no longer exported, use the C<strip_*> functions instead.
=over 4
[ Should this be somewhat templatized, so they can customize
the little HTML bits? Same goes with related functions. -- pudge ]
=item Parameters
=over 4
=item STRING
The string to be manipulated.
=item MODE
May be one of:
=item nohtml
The default. Just strips out HTML.
=item literal
Prints the text verbatim into HTML, which
means just converting < and > and & to their
HTML entities. Also turns on NO_WHITESPACE_FIX.
=item extrans
Similarly to 'literal', converts everything
to its HTML entity, but then formatting is
preserved by converting spaces to HTML
space entities, and multiple newlines into BR
tags.
=item code
Just like 'extrans' but wraps in CODE tags.
=item attribute
Attempts to format string to fit in as an HTML
attribute, which means the same thing as 'literal',
but " marks are also converted to their HTML entity.
=item plaintext
Similar to 'extrans', but does not translate < and >
and & first (so C<stripBadHtml> is called first).
=item anchor
Removes ALL whitespace from inside the filter. It's
is indented for use (but not limited to) the removal
of white space from in side HREF anchor tags to
prevent nasty browser artifacts from showing up in
the display. (Note: the value of NO_WHITESPACE_FIX
is ignored)
=item html (or anything else)
Just runs through C<stripBadHtml>.
=item NO_WHITESPACE_FIX
A boolean that, if true, disables fixing of whitespace
problems. A common exploit in these things is to
run a lot of characters together so the page will
stretch very wide. If NO_WHITESPACE_FIX is false,
then space is inserted to prevent this (see C<breakHtml>).
=back
=item Return value
The manipulated string.
=back
=cut
sub stripByMode {
my($str, $fmode, $no_white_fix) = @_;
$fmode ||= NOHTML;
$no_white_fix = defined($no_white_fix) ?
$no_white_fix : $fmode == LITERAL;
# insert whitespace into long words, convert <>& to HTML entities
if ($fmode == LITERAL || $fmode == EXTRANS || $fmode == ATTRIBUTE || $fmode == CODE) {
# Encode all HTML tags
$str =~ s/&/&/g;
$str =~ s/</</g;
$str =~ s/>/>/g;
# attributes are inside tags, and don't need to be
# broken up
$str = breakHtml($str) unless $no_white_fix || $fmode == ATTRIBUTE;
} elsif ($fmode == PLAINTEXT) {
$str = stripBadHtml($str);
$str = breakHtml($str) unless $no_white_fix;
}
# convert regular text to HTML-ized text, insert P, etc.
if ($fmode == PLAINTEXT || $fmode == EXTRANS || $fmode == CODE) {
$str =~ s/\n/<BR>/gi; # pp breaks
$str =~ s/(?:<BR>\s*){2,}<BR>/<BR><BR>/gi;
# Preserve leading indents / spaces
$str =~ s/\t/ /g; # can mess up internal tabs, oh well
if ($fmode == CODE) { # CODE and TT are the same ... ?
$str =~ s{((?: )+)(?: (\S))?} {
(" " x (length($1)/2)) .
($2 ? " $2" : "")
}eg;
$str = '<TT>' . $str . '</TT>';
} else {
$str =~ s{<BR>\n?( +)} {
"<BR>\n" . (" " x length($1))
}ieg;
}
# strip out all HTML
} elsif ($fmode == NOHTML || $fmode == NOTAGS) {
$str =~ s/<.*?>//g;
$str =~ s/<//g;
$str =~ s/>//g;
if ($fmode == NOHTML) {
$str =~ s/&/&/g;
} elsif ($fmode == NOTAGS) {
$str =~ s/&(?!#?[a-zA-Z0-9]+;)/&/g
}
# convert HTML attribute to allowed text (just convert ")
} elsif ($fmode == ATTRIBUTE) {
$str =~ s/"/"/g;
# for use in templates to remove whitespace from inside HREF anchors
} elsif ($fmode == ANCHOR) {
$str =~ s/[\r\n]+//g;
# probably 'html'
} else {
$str = stripBadHtml($str);
$str = breakHtml($str) unless $no_white_fix;
}
return $str;
}
#========================================================================
=head2 strip_anchor(STRING [, NO_WHITESPACE_FIX])
=head2 strip_attribute(STRING [, NO_WHITESPACE_FIX])
=head2 strip_code(STRING [, NO_WHITESPACE_FIX])
=head2 strip_extrans(STRING [, NO_WHITESPACE_FIX])
=head2 strip_html(STRING [, NO_WHITESPACE_FIX])
=head2 strip_literal(STRING [, NO_WHITESPACE_FIX])
=head2 strip_nohtml(STRING [, NO_WHITESPACE_FIX])
=head2 strip_notags(STRING [, NO_WHITESPACE_FIX])
=head2 strip_plaintext(STRING [, NO_WHITESPACE_FIX])
=head2 strip_mode(STRING [, MODE, NO_WHITESPACE_FIX])
Wrapper for C<stripByMode>. C<strip_mode> simply calls C<stripByMode>
and has the same arguments, but C<strip_mode> will only allow modes
with values greater than 0, that is, the user-supplied modes. C<strip_mode>
is only meant to be used for processing user-supplied modes, to prevent
the user from accessing other mode types. For using specific modes instead
of user-supplied modes, use the function with that mode's name.
See C<stripByMode> for details.
=cut
sub strip_mode {
my($string, $mode, @args) = @_;
return if !$mode || $mode < 1; # user-supplied modes > 0
return stripByMode($string, $mode, @args);
}
sub strip_anchor { stripByMode($_[0], ANCHOR, @_[1 .. $#_]) }
sub strip_attribute { stripByMode($_[0], ATTRIBUTE, @_[1 .. $#_]) }
sub strip_code { stripByMode($_[0], CODE, @_[1 .. $#_]) }
sub strip_extrans { stripByMode($_[0], EXTRANS, @_[1 .. $#_]) }
sub strip_html { stripByMode($_[0], HTML, @_[1 .. $#_]) }
sub strip_literal { stripByMode($_[0], LITERAL, @_[1 .. $#_]) }
sub strip_nohtml { stripByMode($_[0], NOHTML, @_[1 .. $#_]) }
sub strip_notags { stripByMode($_[0], NOTAGS, @_[1 .. $#_]) }
sub strip_plaintext { stripByMode($_[0], PLAINTEXT, @_[1 .. $#_]) }
#========================================================================
=head2 stripBadHtml(STRING)
Private function. Strips out "bad" HTML by removing unbalanced HTML
tags and sending balanced tags through C<approveTag>. The "unbalanced"
checker is primitive; no "E<lt>" or "E<gt>" tags will are allowed inside
tag attributes (such as E<lt>A NAME="E<gt>"E<gt>), that breaks the tag.
Also, whitespace is inserted between adjacent tags, so "E<lt>BRE<gt>E<lt>BRE<gt>"
becomes "E<lt>BRE<gt> E<lt>BRE<gt>".
=over 4
=item Parameters
=over 4
=item STRING
String to be processed.
=back
=item Return value
Processed string.
=item Dependencies
C<approveTag> function.
=back
=cut
sub stripBadHtml {
my($str) = @_;
# not staying here, just for now
$str =~ s|<LITERAL>(.*?)</LITERAL>|'<P>' . strip_code($1) . '</P>'|egis;
$str =~ s/<(?!.*?>)//gs;
$str =~ s/<(.*?)>/approveTag($1)/sge;
$str =~ s/></> </g;
# Encode stray >
1 while $str =~ s{
(
(?: ^ | > ) # either beginning of string,
# or another close bracket
[^<]* # not matching open bracket
)
> # close bracket
}{$1>}gx;
# Encode stray <
1 while $str =~ s{
< # open bracket
(
[^>]* # not match close bracket
(?: < | $ ) # either open bracket, or
# end of string
)
}{<$1}gx;
return $str;
}
#========================================================================
=head2 breakHtml(TEXT, MAX_WORD_LENGTH)
Private function. Break up long words in some text. Will ignore the
contents of HTML tags. Called from C<stripByMode> functions.
=over 4
=item Parameters
=over 4
=item TEXT
The text to be fixed.
=item MAX_WORD_LENGTH
The maximum length of a word. Default is 50.
=back
=item Return value
The text.
=back
=cut
{
# this should be defined in vars table
my %is_break_tag = map { uc, 1 } qw(HR BR LI P OL UL BLOCKQUOTE DIV);
sub breakHtml {
my($text, $mwl) = @_;
my($new, $l, $c, $in_tag, $this_tag, $cwl);
$mwl = $mwl || 50;
$l = length $text;
for (my $i = 0; $i < $l; $new .= $c, ++$i) {
$c = substr($text, $i, 1);
if ($c eq '<') { $in_tag = 1 }
elsif ($c eq '>') {
$in_tag = 0;
$this_tag =~ s{^/?(\S+).*}{\U$1};
$cwl = 0 if $is_break_tag{$this_tag};
$this_tag = '';
}
elsif ($in_tag) { $this_tag .= $c }
elsif ($c =~ /\s/) { $cwl = 0 }
elsif (++$cwl > $mwl) { $new .= ' '; $cwl = 1 }
}
return $new;
}
}
#========================================================================
=head2 fixHref(URL [, ERROR])
Take a relative URL and fix it to some predefined set.
I don't really like this function much, it should be played with.
=over 4
=item Parameters
=over 4
=item URL
Relative URL to manipulate.
=item ERROR
Boolean whether or not to return error number.
=back
=item Return value
Undef if URL is not handled. If it is handled and ERROR is false,
new URL is returned. If it is handled and ERROR is true, URL
and the error number are returned.
=item Dependencies
The fixhrefs section in the vars table, and some sort of table
(like 404-main) for determining what the number means.
=back
=cut
sub fixHref { # I don't like this. we need to change it. -- pudge
my($rel_url, $print_errs) = @_;
my $abs_url; # the "fixed" URL
my $errnum; # the errnum for 404.pl
my $fixhrefs = getCurrentStatic('fixhrefs');
for my $qr (@{$fixhrefs}) {
if ($rel_url =~ $qr->[0]) {
my @ret = $qr->[1]->($rel_url);
return $print_errs ? @ret : $ret[0];
}
}
my $rootdir = getCurrentStatic('rootdir');
if ($rel_url =~ /^www\.\w+/) {
# errnum 1
$abs_url = "http://$rel_url";
return($abs_url, 1) if $print_errs;
return $abs_url;
} elsif ($rel_url =~ /^ftp\.\w+/) {
# errnum 2
$abs_url = "ftp://$rel_url";
return ($abs_url, 2) if $print_errs;
return $abs_url;
} elsif ($rel_url =~ /^[\w\-\$\.]+\@\S+/) {
# errnum 3
$abs_url = "mailto:$rel_url";
return ($abs_url, 3) if $print_errs;
return $abs_url;
} elsif ($rel_url =~ /^articles/ && $rel_url =~ /\.shtml$/) {
# errnum 6
my @chunks = split m|/|, $rel_url;
my $file = pop @chunks;
if ($file =~ /^98/ || $file =~ /^0000/) {
$rel_url = "$rootdir/articles/older/$file";
return ($rel_url, 6) if $print_errs;
return $rel_url;
} else {
return;
}
} elsif ($rel_url =~ /^features/ && $rel_url =~ /\.shtml$/) {
# errnum 7
my @chunks = split m|/|, $rel_url;
my $file = pop @chunks;
if ($file =~ /^98/ || $file =~ /~00000/) {
$rel_url = "$rootdir/features/older/$file";
return ($rel_url, 7) if $print_errs;
return $rel_url;
} else {
return;
}
} elsif ($rel_url =~ /^books/ && $rel_url =~ /\.shtml$/) {
# errnum 8
my @chunks = split m|/|, $rel_url;
my $file = pop @chunks;
if ($file =~ /^98/ || $file =~ /^00000/) {
$rel_url = "$rootdir/books/older/$file";
return ($rel_url, 8) if $print_errs;
return $rel_url;
} else {
return;
}
} elsif ($rel_url =~ /^askslashdot/ && $rel_url =~ /\.shtml$/) {
# errnum 9
my @chunks = split m|/|, $rel_url;
my $file = pop @chunks;
if ($file =~ /^98/ || $file =~ /^00000/) {
$rel_url = "$rootdir/askslashdot/older/$file";
return ($rel_url, 9) if $print_errs;
return $rel_url;
} else {
return;
}
} else {
# if we get here, we don't know what to
# $abs_url = $rel_url;
return;
}
# just in case
return $abs_url;
}
#========================================================================
=head2 approveTag(TAG)
Private function. Checks to see if HTML tag is OK, and adjusts it as necessary.
=over 4
=item Parameters
=over 4
=item TAG
Tag to check.
=back
=item Return value
Tag after processing.
=item Dependencies
Uses the "approvetags" variable in the vars table. Passes URLs
in HREFs through C<fudgeurl>.
=back
=cut
sub approveTag {
my($tag) = @_;
$tag =~ s/^\s*?(.*)\s*?$/$1/; # trim leading and trailing spaces
$tag =~ s/\bstyle\s*=(.*)$//is; # go away please
# Take care of URL:foo and other HREFs
# Using /s means that the entire variable is treated as a single line
# which means \n will not fool it into stopping processing. fudgeurl()
# knows how to handle multi-line URLs (it removes whitespace).
if ($tag =~ /^URL:(.+)$/is) {
my $url = fudgeurl($1);
return qq!<A HREF="$url">$url</A>!;
} elsif ($tag =~ /href\s*=(.+)$/is) {
my $url = fudgeurl($1);
return qq!<A HREF="$url">!;
}
# Validate all other tags
my $approvedtags = getCurrentStatic('approvedtags');
$tag =~ s|^(/?\w+)|\U$1|;
foreach my $goodtag (@$approvedtags) {
return "<$tag>" if $tag =~ /^$goodtag$/ || $tag =~ m|^/$goodtag$|;
}
}
#========================================================================
=head2 fixparam(DATA)
Prepares data to be a parameter in a URL. Such as:
=over 4
my $url = 'http://example.com/foo.pl?bar=' . fixparam($data);
=item Parameters
=over 4
=item DATA
The data to be escaped.
=back
=item Return value
The escaped data.
=back
=cut
sub fixparam {
my($url) = @_;
$url =~ s/([^$URI::unreserved])/$URI::Escape::escapes{$1}/oge;
return $url;
}
#========================================================================
=head2 fixurl(DATA)
Prepares data to be a URL or in part of a URL. Such as:
=over 4
my $url = 'http://example.com/~' . fixurl($data) . '/';
=item Parameters
=over 4
=item DATA
The data to be escaped.
=back
=item Return value
The escaped data.
=back
=cut
sub fixurl {
my($url) = @_;
# add '#' to allowed characters, since it is often included
$url =~ s/([^$URI::uric#])/$URI::Escape::escapes{$1}/oge;
return $url;
}
#========================================================================
=head2 fudgeurl(DATA)
Prepares data to be a URL. Such as:
=over 4
my $url = fixparam($someurl);
=item Parameters
=over 4
=item DATA
The data to be escaped.
=back
=item Return value
The escaped data.
=back
=cut
sub fudgeurl {
my($url) = @_;
# Remove quotes and whitespace (we will expect some at beginning and end,
# probably)
$url =~ s/["\s]//g;
# any < or > char after the first char truncates the URL right there
# (we will expect a trailing ">" probably)
$url =~ s/^[<>]+//;
$url =~ s/[<>].*//;
# strip surrounding ' if exists
$url =~ s/^'(.+?)'$/$1/g;
# escape anything not allowed
$url = fixurl($url);
# run it through the grungy URL miscellaneous-"fixer"
$url = fixHref($url) || $url;
my $uri = new URI $url;
if ($uri && $uri->can('scheme') && $uri->scheme eq 'about') {
# Fix broken MSIE which allows arbitrary tags
# in about: URLs. I really hate how broken Microsoft
# is, over and over again in just about everything.
# we could try to use URI class methods to deal with it,
# but we have to deal with opaque vs. fragment etc.;
# fuggedaboudit. -- pudge
$url =~ s/^about://;
$url =~ tr/A-Za-z0-9-//cd; # allow only a few chars
$url = 'about:' . $url;
} elsif (1) {
# Strip the authority, if any.
# This prevents annoying browser-display-exploits
# like "http://cnn.com%20%20%20...%20@baddomain.com".
# In future we may set up a package global or a field like
# getCurrentUser()->{state}{fixurlauth} that will allow
# this behavior to be turned off -- it's wrapped in
# "if (1)" to remind us of this...
if ($uri && $uri->can('host') && $uri->can('authority')) {
# Make sure the host and port are legit, then zap
# the port if it's the default port.
my $host = $uri->host;
$host =~ tr/A-Za-z0-9.-//cd; # per RFC 1035
$uri->host($host);
my $authority = $uri->can('host_port') &&
$uri->port != $uri->default_port
? $uri->host_port
: $host;
$uri->authority($authority);
$url = $uri->canonical->as_string;
}
}
# we don't like SCRIPT at the beginning of a URL
my $decoded_url = decode_entities($url);
return $decoded_url =~ /^[\s\w]*script\b/i ? undef : $url;
}
#========================================================================
=head2 chopEntity(STRING)
Chops a string to a specified length, without splitting in the middle
of an HTML entity or HTML tag (so we will err on the short side).
=over 4
=item Parameters
=over 4
=item STRING
String to be chomped.
=back
=item Return value
Chomped string.
=back
=cut
sub chopEntity {
my($text, $length) = @_;
$text = substr($text, 0, $length) if $length;
$text =~ s/&#?[a-zA-Z0-9]*$//;
$text =~ s/<[^>]*$//;
return $text;
}
# DOCUMENT after we remove some of this in favor of
# HTML::Element
sub html2text {
my($html, $col) = @_;
my($text, $tree, $form, $refs);
my $constants = getCurrentStatic();
my $user = getCurrentUser();
$col ||= 74;
$tree = new HTML::TreeBuilder;
$form = new HTML::FormatText (leftmargin => 0, rightmargin => $col-2);
$refs = new HTML::FormatText::AddRefs;
$tree->parse($html);
$tree->eof;
$refs->parse_refs($tree);
$text = $form->format($tree);
1 while chomp($text);
return $text, $refs->get_refs($constants->{absolutedir});
}
sub HTML::FormatText::AddRefs::new {
bless { HH => {}, HA => [], HS => 0 }, $_[0];
};
sub HTML::FormatText::AddRefs::parse_refs {
my($ref, $self, $format) = @_;
$format ||= '[%d]%s';
# find all the HREFs where the tag is "a"
if (exists $self->{'href'} && $self->{'_tag'} =~ /^[aA]$/) {
my $href = $self->{'href'};
# only increment number in hash and add to array if
# not already in array/hash
if (!exists $ref->{'HH'}{$href}) {
$ref->{'HH'}{$href} = $$ref{'HS'}++;
push(@{$ref->{'HA'}}, $href);
}
# get nested elements
my $con = $self->{'_content'};
while (ref($con->[0]) eq 'HTML::Element') {
$con = $con->[0]{'_content'};
}
# add "footnote" to text
$con->[0] = sprintf(
$format, $ref->{'HH'}{$href}, $con->[0]
) if defined $con->[0];
# get nested elements
} elsif (exists $self->{'_content'}) {
foreach (@{$self->{'_content'}}) {
if (ref($_) eq 'HTML::Element') {
$ref->parse_refs($_);
}
}
}
}
sub HTML::FormatText::AddRefs::add_refs {
my($ref, $url) = @_;
my $count = 0;
my $ascii = "\n\nReferences\n";
foreach ($ref->get_refs($url, $count)) {
$ascii .= sprintf("%4d. %s\n", $count++, $_);
}
return $ascii;
}
sub HTML::FormatText::AddRefs::get_refs {
my($ref, $url) = @_;
my @refs;
foreach (@{$ref->{'HA'}}) {
push @refs, URI->new_abs($_, $url);
}
return @refs;
}
#========================================================================
=head2 balanceTags(HTML [, DEEP_NESTING])
Balances HTML tags; if tags are not closed, close them; if they are not
open, remove close tags; if they are in the wrong order, reorder them
(order of open tags determines order of close tags).
=over 4
=item Parameters
=over 4
=item HTML
The HTML to balance.
=item DEEP_NESTING
Integer for how deep to allow nesting indenting tags, 0 means
no limit.
=back
=item Return value
The balances HTML.
=item Dependencies
The 'approvedtags' and 'lonetags' entries in the vars table.
=back
=cut
sub balanceTags {
my($html, $max_nest_depth) = @_;
my(%tags, @stack, $match, %lone, $tag, $close, $whole);
my $constants = getCurrentStatic();
# set up / get preferences
if (@{$constants->{lonetags}}) {
$match = join '|', @{$constants->{approvedtags}};
} else {
$constants->{lonetags} = [qw(P LI BR)];
$match = join '|', grep !/^(?:P|LI|BR)$/,
@{$constants->{approvedtags}};
}
%lone = map { ($_, 1) } @{$constants->{lonetags}};
# If the quoted slash in the next line bothers you, then feel free to
# remove it. It's just there to prevent broken syntactical highlighting
# on certain editors (vim AND xemacs). -- Cliff
# maybe you should use a REAL editor, like BBEdit. :) -- pudge
while ($html =~ m|(<(\/?)($match)\b[^>]*>)|igo) { # loop over tags
($tag, $close, $whole) = ($3, $2, $1);
if ($close) {
if (@stack && $tags{$tag}) {
# Close the tag on the top of the stack
if ($stack[-1] eq $tag) {
$tags{$tag}--;
pop @stack;
# Close tag somewhere else in stack
} else {
my $p = pos($html) - length($whole);
if (exists $lone{$stack[-1]}) {
pop @stack;
} else {
substr($html, $p, 0) = "</$stack[-1]>";
}
pos($html) = $p; # don't remove this from stack, go again
}
} else {
# Close tag not on stack; just delete it
my $p = pos($html) - length($whole);
$html =~ s|^(.{$p})\Q$whole\E|$1|si;
pos($html) = $p;
}
} else {
$tags{$tag}++;
push @stack, $tag;
if ($max_nest_depth) {
my $cur_depth = 0;
for (qw( UL OL DIV BLOCKQUOTE )) { $cur_depth += $tags{$_} }
return undef if $cur_depth > $max_nest_depth;
}
}
}
$html =~ s/\s+$//;
# add on any unclosed tags still on stack
$html .= join '', map { "</$_>" } grep {! exists $lone{$_}} reverse @stack;
}
#========================================================================
=head2 parseDomainTags(HTML, RECOMMENDED, NOTAGS)
To be called before sending the HTML to the user for display. Takes
HTML with domain tags (see addDomainTags()) and parses out the tags,
if necessary.
=over 4
=item Parameters
=over 4
=item HTML
The HTML with tagged with domains.
=item RECOMMENDED
Boolean for whether or not domain tags are recommended. They are not
required, the user can choose to leave it up to us.
=item NOTAGS
Boolean overriding RECOMMENDED; it strips out all domain tags if true.
=back
=item Return value
The parsed HTML.
=back
=cut
sub parseDomainTags {
my($html, $recommended, $notags) = @_;
return "" if !defined($html) || $html eq "";
my $user = getCurrentUser();
# default is 2 # XXX Jamie I think should be 1
my $udt = exists($user->{domaintags}) ? $user->{domaintags} : 2;
$udt =~ /^(\d+)$/; # make sure it's numeric, sigh
$udt = 2 if !length($1);
my $want_tags = 1; # assume we'll be displaying the [domain.tags]
$want_tags = 0 if # but, don't display them if...
$udt == 0 # the user has said they never want the tags
|| ( # or
$udt == 1 # the user leaves it up to us
and $recommended # and we think the poster has earned tagless posting
);
if ($want_tags && !$notags) {
$html =~ s{</A ([^>]+)>}{</A> [$1]}gi;
} else {
$html =~ s{</A[^>]+>}{</A>}gi;
}
return $html;
}
#========================================================================
=head2 addDomainTags(HTML)
To be called only after C<balanceTags>, or results are not guaranteed.
Munges HTML E<lt>/aE<gt> tags into E<lt>/a foo.comE<gt> tags, where
"foo.com" is the domain name of the link found in the opening E<lt>aE<gt>
tag. Note that this is not proper HTML, and that C<dispComment> knows
how properly to convert it back to proper HTML.
=over 4
=item Parameters
=over 4
=item HTML
The HTML to tag with domains.
=back
=item Return value
The tagged HTML.
=back
=cut
sub addDomainTags {
my($html) = @_;
# First step is to eliminate unclosed <A> tags.
my $in_a = 0;
$html =~ s
{
( < (/?) A \b[^>]* > )
}{
my $old_in_a = $in_a;
my $new_in_a = !$2;
$in_a = $new_in_a;
(($old_in_a && $new_in_a) ? "</A>" : "") . $1
}gixe;
$html .= "</A>" if $in_a;
# Now, since we know that every <A> has a </A>, this pattern will
# match and let the subroutine above do its magic properly.
# Note that, since a <A> followed immediately by </A> will not
# only fail to appear in a browser, but would also look goofy if
# followed by a [domain.tag], in such a case we simply remove the
# <A></A> pair entirely.
$html =~ s
{
(<A\s+HREF=" # $1 is the whole <A HREF...>
([^">]*) # $2 is the URL (quotes guaranteed to
# be there thanks to approveTag)
">)
(.*?) # $3 is whatever's between <A> and </A>
</A\b[^>]*>
}{
$3 ? $1 . $3 . _url_to_domain_tag($2)
: ""
}gisex;
# If there were unmatched <A> tags in the original, balanceTags()
# would have added the corresponding </A> tags to the end. These
# will stick out now because they won't have domain tags. We
# know we've added enough </A> to make sure everything balances
# and doesn't overlap, so now we can just remove the extra ones,
# which are easy to tell because they DON'T have domain tags.
$html =~ s{</A>}{}g;
return $html;
}
sub _url_to_domain_tag {
my($link) = @_;
my $absolutedir = getCurrentStatic('absolutedir');
my $uri = URI->new_abs($link, $absolutedir);
my($info, $host, $scheme) = ("", "", "");
if ($uri->can("host") and $host = $uri->host) {
$info = lc $host;
if ($info =~ m/^([\d.]+)\.in-addr\.arpa$/) {
$info = join(".", reverse split /\./, $1);
}
if ($info =~ m/^(\d{1,3}\.){3}\d{1,3}$/) {
# leave a numeric IP address alone
} elsif ($info =~ m/([\w-]+\.[a-z]{3,4})$/) {
# a.b.c.d.com -> d.com
$info = $1;
} elsif ($info =~ m/([\w-]+\.[a-z]{2,4}\.[a-z]{2})$/) {
# a.b.c.d.co.uk -> d.co.uk
$info = $1;
} elsif ($info =~ m/([\w-]+\.[a-z]{2})$/) {
# a.b.c.realdomain.gr -> realdomain.gr
$info = $1;
} else {
# any other a.b.c.d.e -> c.d.e
my @info = split /\./, $info;
my $num_levels = scalar @info;
if ($num_levels >= 3) {
$info = join(".", @info[-3..-1]);
}
}
} elsif ($uri->can("scheme") and $scheme = $uri->scheme) {
# Most schemes, like ftp or http, have a host. Some,
# most notably mailto and news, do not. For those,
# at least give the user an idea of why not, by
# listing the scheme.
$info = lc $scheme;
} else {
$info = "?";
}
if ($info ne "?") {
$info =~ tr/A-Za-z0-9.-//cd;
}
if (length($info) == 0) {
$info = "?";
} elsif (length($info) >= 25) {
$info = substr($info, 0, 10) . "..." . substr($info, -10);
}
return "</a $info>";
}
#========================================================================
=head2 xmlencode_plain(TEXT)
Same as xmlencode(TEXT), but does not encode for use in HTML. This is
currently ONLY for use for E<lt>linkE<gt> elements.
=over 4
=item Parameters
=over 4
=item TEXT
Whatever text it is you want to encode.
=back
=item Return value
The encoded string.
=item Dependencies
XML::Parser::Expat(3).
=back
=cut
sub xmlencode_plain {
xmlencode($_[0], 1);
}
#========================================================================
=head2 xmlencode(TEXT)
Encodes / escapes a string for putting into XML.
The text goes through three phases: we first convert
all "&" that are not part of an entity to "&"; then
we convert all "&", "<", and ">" to their entities.
Then all characters that are not printable ASCII characters
(\040 to \176) are converted to their numeric entities
(such as "À").
Note that this is basically encoding a string into valid
HTML, then escaping it for XML. When run through regular
XML unescaping, a valid HTML string should remain
(that is, the characters will be valid for HTML, while it
may not be syntactically correct). You may use something
like C<HTML::Entities::decode_entities> if you wish to get
the regular text.
=over 4
=item Parameters
=over 4
=item TEXT
Whatever text it is you want to encode.
=back
=item Return value
The encoded string.
=item Dependencies
XML::Parser::Expat(3).
=back
=cut
sub xmlencode {
my($text, $nohtml) = @_;
# if there is an & that is not part of an entity, convert it
# to &
$text =~ s/&(?!#?[a-zA-Z0-9]+;)/&/g
unless $nohtml;
# convert & < > to XML entities
$text = XML::Parser::Expat->xml_escape($text, ">");
# convert ASCII-non-printable to numeric entities
$text =~ s/([^\s\040-\176])/ "&#" . ord($1) . ";" /ge;
return $text;
}
#========================================================================
=head2 xmldecode(TEXT)
Decodes / unescapes an XML string. It basically just
decodes the five entities used to encode "<", ">", '"',
"'", and "&". "&" is only decoded if it is not the start
of an entity.
This will decode the named, decimal numeric, or hex numeric
versions of the entities.
Note that while C<xmlencode> will make sure the characters
in the string are proper HTML characters, C<xmldecode> will
not take the extra step to get back the original non-HTML
text; we want to leave the text as OK to put directly into
HTML. You may use something like
C<HTML::Entities::decode_entities> if you wish to get
the regular text.
=over 4
=item Parameters
=over 4
=item TEXT
Whatever text it is you want to decode.
=back
=item Return value
The decoded string.
=back
=cut
{
# for all following chars but &, convert entities back to
# the actual character
# for &, convert & back to &, but only if it is the
# beginning of an entity (like "&#32;")
# precompile these so we only do it once
my %e = qw(< lt > gt " quot ' apos & amp);
for my $chr (keys %e) {
my $word = $e{$chr};
my $ord = ord $chr;
my $hex = sprintf "%x", $ord;
$hex =~ s/([a-f])/[$1\U$1]/g;
my $regex = qq/&(?:$word|#$ord|#[xX]$hex);/;
$regex .= qq/(?=#?[a-zA-Z0-9]+;)/ if $chr eq "&";
$e{$chr} = qr/$regex/;
}
sub xmldecode {
my($text) = @_;
# do & only _after_ the others
for my $chr ((grep !/^&$/, keys %e), "&") {
$text =~ s/$e{$chr}/$chr/g;
}
return $text;
}
}
#========================================================================
=head2 getArmoredEmail (UID)
Returns a Spam Armored email address for the user associated with the
given UID.
This routine DOES NOT save its results back to the user record. This is
the responsibility of the calling routine.
=over 4
=item Parameters
=over 4
=item UID
The user's ID whose email address you wish to randomize.
=back
=item Return value
The email address, if successful.
=back
=cut
sub getArmoredEmail {
my($uid, $realemail) = @_;
# If the caller knows realemail, pass it in to maybe save a DB query
$realemail ||= '';
my $slashdb = getCurrentDB();
my $armor = $slashdb->getRandomSpamArmor();
# Execute the retrieved code in a Safe compartment. We do this
# in an anonymous block to enable local scoping for some variables.
{
local $_ = $realemail;
$_ ||= $slashdb->getUser($uid, 'realemail');
# maybe this should be cached, something like the template
# cache in Slash::Display? it has some significant
# overhead -- pudge
my $cpt = new Safe;
# We only permit basic arithmetic, loop and looping opcodes.
# We also explicitly allow join since some code may involve
# Separating the address so that obfuscation can be performed
# in parts.
# NOTE: these opcode classes cannot be in the database etc.,
# because that would compromise the security model. -- pudge
$cpt->permit(qw[:base_core :base_loop :base_math join]);
# Each compartment should be designed to take input from, and
# send output to, $_.
$cpt->reval($armor->{code});
return $_ unless $@;
# If we are here, an error occured in the block. This should be
# logged.
#
# Ideally, this text should be in a template, somewhere
# but I hesitate to use Slash::getData() in a module where I
# don't see it already in use. - Cliff
# it can be used anywhere, since Slash.pm is assumed to
# be loaded -- pudge
errorLog(<<EOT);
Error randomizing realemail using armor '$armor->{name}':
$@
EOT
}
}
########################################################
# fix parameter input that should be integers
sub fixint {
my($int) = @_;
$int =~ s/^\+//;
$int =~ s/^(-?[\d.]+).*$/$1/s or return;
return $int;
}
1;
__END__
=head1 SEE ALSO
Slash(3), Slash::Utility(3).
=head1 VERSION
$Id: Data.pm,v 1.1.2.39 2002/07/03 17:06:09 pudge Exp $
|