summaryrefslogtreecommitdiff
path: root/Echolot
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-07-10 16:22:49 +0000
committerPeter Palfrader <peter@palfrader.org>2002-07-10 16:22:49 +0000
commit9e10edb996b206d531caa5f929a117cefb790355 (patch)
tree27dd1ff688e99a1812314e884b9e9a893f0ad913 /Echolot
parentf116bd21fa2d0d13861dbde638ebdb33a01e8568 (diff)
Changed thesaurus filenames from nn-foo to nn.foo
Moved save_thesaurus() from Conf.pm to Thesaurus.pm
Diffstat (limited to 'Echolot')
-rw-r--r--Echolot/Conf.pm32
-rw-r--r--Echolot/Thesaurus.pm24
2 files changed, 28 insertions, 28 deletions
diff --git a/Echolot/Conf.pm b/Echolot/Conf.pm
index d240e84..0e669eb 100644
--- a/Echolot/Conf.pm
+++ b/Echolot/Conf.pm
@@ -1,7 +1,7 @@
package Echolot::Conf;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: Conf.pm,v 1.14 2002/07/07 01:12:00 weasel Exp $
+# $Id: Conf.pm,v 1.15 2002/07/10 16:22:49 weasel Exp $
#
=pod
@@ -24,26 +24,6 @@ use GnuPG::Interface;
use IO::Handle;
-sub save_thesaurus($$$) {
- my ($otype, $oid, $data) = @_;
-
- return 1 unless Echolot::Config::get()->{'thesaurus'};
-
- my ($type) = $otype =~ /^([a-z-]+)$/;
- cluck("type '$otype' is not clean in save_thesaurus"), return 0 unless defined $type;
- my ($id) = $oid =~ /^([0-9]+)$/;
- cluck("id '$oid' is not clean in save_thesaurus"), return 0 unless defined $id;
-
- my $file = Echolot::Config::get()->{'thesaurusdir'}.'/'.$id.'-'.$type;
- open (F, ">$file") or
- cluck ("Cannot open '$file': $!"),
- return 0;
- print F $data;
- close (F);
-
- return 1;
-};
-
sub send_requests() {
Echolot::Globals::get()->{'storage'}->delay_commit();
for my $remailer (Echolot::Globals::get()->{'storage'}->get_addresses()) {
@@ -169,7 +149,7 @@ sub remailer_conf($$$) {
cluck ("Returned token '$token' has no id at all"),
return 0;
- save_thesaurus('conf', $id, $reply);
+ Echolot::Thesaurus::save_thesaurus('conf', $id, $reply);
remailer_caps($reply, $token, $time);
};
@@ -386,7 +366,7 @@ sub remailer_key($$$) {
cluck ("Returned token '$token' has no id at all"),
return 0;
- save_thesaurus('key', $id, $reply);
+ Echolot::Thesaurus::save_thesaurus('key', $id, $reply);
my $remailer = Echolot::Globals::get()->{'storage'}->get_address_by_id($id);
cluck("No remailer found for id '$id'"), return 0 unless defined $remailer;
@@ -405,7 +385,7 @@ sub remailer_stats($$$) {
cluck ("Returned token '$token' has no id at all"),
return 0;
- save_thesaurus('stats', $id, $reply);
+ Echolot::Thesaurus::save_thesaurus('stats', $id, $reply);
};
sub remailer_help($$$) {
@@ -416,7 +396,7 @@ sub remailer_help($$$) {
cluck ("Returned token '$token' has no id at all"),
return 0;
- save_thesaurus('help', $id, $reply);
+ Echolot::Thesaurus::save_thesaurus('help', $id, $reply);
};
sub remailer_adminkey($$$) {
@@ -427,7 +407,7 @@ sub remailer_adminkey($$$) {
cluck ("Returned token '$token' has no id at all"),
return 0;
- save_thesaurus('adminkey', $id, $reply);
+ Echolot::Thesaurus::save_thesaurus('adminkey', $id, $reply);
};
1;
diff --git a/Echolot/Thesaurus.pm b/Echolot/Thesaurus.pm
index ba68a69..be97446 100644
--- a/Echolot/Thesaurus.pm
+++ b/Echolot/Thesaurus.pm
@@ -1,7 +1,7 @@
package Echolot::Thesaurus;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: Thesaurus.pm,v 1.5 2002/07/07 01:12:00 weasel Exp $
+# $Id: Thesaurus.pm,v 1.6 2002/07/10 16:22:49 weasel Exp $
#
=pod
@@ -23,6 +23,26 @@ use English;
use HTML::Template;
+sub save_thesaurus($$$) {
+ my ($otype, $oid, $data) = @_;
+
+ return 1 unless Echolot::Config::get()->{'thesaurus'};
+
+ my ($type) = $otype =~ /^([a-z-]+)$/;
+ cluck("type '$otype' is not clean in save_thesaurus"), return 0 unless defined $type;
+ my ($id) = $oid =~ /^([0-9]+)$/;
+ cluck("id '$oid' is not clean in save_thesaurus"), return 0 unless defined $id;
+
+ my $file = Echolot::Config::get()->{'thesaurusdir'}.'/'.$id.'.'.$type;
+ open (F, ">$file") or
+ cluck ("Cannot open '$file': $!"),
+ return 0;
+ print F $data;
+ close (F);
+
+ return 1;
+};
+
sub build_thesaurus() {
return 1 unless Echolot::Config::get()->{'thesaurus'};
@@ -38,7 +58,7 @@ sub build_thesaurus() {
my $data;
for my $filename (@files) {
- my ($id, $what) = $filename =~ /^(\d+)-(adminkey|conf|help|key|stats)$/;
+ my ($id, $what) = $filename =~ /^(\d+)\.(adminkey|conf|help|key|stats)$/;
next unless (defined $id && defined $what);
my $remailer = Echolot::Globals::get()->{'storage'}->get_address_by_id($id);