1 package Posting
::Handle
;
3 ################################################################################
5 # File: shared/Posting/Handle.pm #
7 # Authors: Frank Schoenmann <fs@tower.de>, 2001-02-27 #
9 # Description: Allow modifications of postings #
11 ################################################################################
16 use base qw(Exporter);
18 @EXPORT = qw(hide_posting recover_posting modify_posting);
20 use Posting
::_lib
qw(get_message_node save_file);
24 ### hide_posting () ############################################################
26 # Hide a posting: set 'invisible' flag
28 # Params: $forum Path and filename of forum
29 # $tpath Path to thread files
30 # \%info Hash reference: 'thread', 'posting', 'indexFile'
35 my ($forum, $tpath, $info) = @_;
36 my ($tid, $mid, $indexFile) = ('t' . $info->{'thread'},
37 'm' . $info->{'posting'},
38 $info->{'indexFile'});
40 my $tfile = $tpath . '/' . $tid . '.xml';
41 change_posting_visibility
($tfile, $tid, $mid, 1);
42 change_posting_visibility
($forum, $tid, $mid, 1);
45 ### recover_posting() ##########################################################
47 # Recover a posting: delete 'invisible' flag
49 # Params: $forum Path and filename of forum
50 # $tpath Path to thread files
51 # \%hashref Reference: 'thread', 'posting', 'indexFile'
54 sub recover_posting
($$$)
56 my ($forum, $tpath, $info) = @_;
57 my ($tid, $mid, $indexFile) = ('t' . $info->{'thread'},
58 'm' . $info->{'posting'},
59 $info->{'indexFile'});
61 my $tfile = $tpath . '/' . $tid . '.xml';
62 change_posting_visibility
($tfile, $tid, $mid, 0);
63 change_posting_visibility
($forum, $tid, $mid, 0);
66 ### change_posting_visibility () ###############################################
68 # Set a postings visibility flag to $invisible
70 # Params: $fname Filename
73 # $invisible 1 - invisible, 0 - visible
76 sub change_posting_visibility
($$$$)
78 my ($fname, $tid, $mid, $invisible) = @_;
80 my $parser = new XML
::DOM
::Parser
;
81 my $xml = $parser->parsefile($fname);
83 # Set flag in given msg
84 my $mnode = get_message_node
($xml, $tid, $mid);
85 $mnode->setAttribute('invisible', $invisible);
87 # Set flag in sub nodes
88 for ($mnode->getElementsByTagName('Message'))
90 $_->setAttribute('invisible', $invisible);
93 return save_file
($fname, \
$xml->toString);
96 ### modify_posting () ##########################################################
98 # Modify a posting (only subject and category until now!)
100 # Params: $forum Path and filename of forum
101 # $tpath Path to thread files
102 # \%info Reference: 'thread', 'posting', 'indexFile', 'data'
103 # (\%hashref: 'subject', 'category', 'body')
106 sub modify_posting
($$$)
108 my ($forum, $tpath, $info) = @_;
109 my ($tid, $mid, $indexFile, $data) = ('t' . $info->{'thread'},
110 'm' . $info->{'posting'},
111 $info->{'indexFile'},
113 my ($subject, $category, $body) = ($data->{'subject'}, $data->{'category'}, $data->{'body'});
117 # These values may be changed by change_posting_value()
118 $subject && $msgdata{'Subject'} = $subject;
119 $category && $msgdata{'Category'} = $category;
122 my $tfile = $tpath . '/' . $tid . '.xml';
123 change_posting_value
($tfile, $tid, $mid, \
$msgdata);
124 change_posting_value
($forum, $tid, $mid, \
$msgdata);
127 ### change_posting_value () ####################################################
129 # Change specific values of a posting
131 # Params: $fname Filename
134 # \%values New values
135 # Return: Status code
137 sub change_posting_value
($$$$)
139 my ($fname, $tid, $mid, $values) = @_;
141 my $parser = new XML
::DOM
::Parser
;
142 my $xml = $parser->parsefile($fname);
144 my $mnode = get_message_node
($xml, $tid, $mid);
148 # Find first direct child node with name $_
149 my $nodes = $mnode->getElementsByTagName($_, 0);
150 my $node = $nodes->item(0);
151 $node->setValue($values->{$_});
154 return save_file
($fname, \
$xml->toString);