summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-03-26 15:29:23 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-03-26 15:29:23 +0800
commit63c8a1a039564ab9926aa8677006540494f54208 (patch)
tree8741cf197d1d8809259c8b233e32030fb532b6cd
parent1b888ad8dc09568946c10de09d69e1fe8621ce70 (diff)
downloadpttbbs-63c8a1a039564ab9926aa8677006540494f54208.tar
pttbbs-63c8a1a039564ab9926aa8677006540494f54208.tar.gz
pttbbs-63c8a1a039564ab9926aa8677006540494f54208.tar.bz2
pttbbs-63c8a1a039564ab9926aa8677006540494f54208.tar.lz
pttbbs-63c8a1a039564ab9926aa8677006540494f54208.tar.xz
pttbbs-63c8a1a039564ab9926aa8677006540494f54208.tar.zst
pttbbs-63c8a1a039564ab9926aa8677006540494f54208.zip
deleting support
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1610 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rwxr-xr-xblog/builddb.pl57
-rw-r--r--mbbsd/announce.c17
2 files changed, 65 insertions, 9 deletions
diff --git a/blog/builddb.pl b/blog/builddb.pl
index ad1668a5..9c805d90 100755
--- a/blog/builddb.pl
+++ b/blog/builddb.pl
@@ -13,7 +13,7 @@ use OurNet::FuzzyIndex;
sub main
{
my($fh);
- die usage() unless( getopts('cdaofn:') );
+ die usage() unless( getopts('cdaofn:D:') );
die usage() if( !@ARGV );
builddb($_) foreach( @ARGV );
}
@@ -26,7 +26,8 @@ sub usage
"\t-d\t\tprint debug message\n".
"\t-f\t\tforce build\n".
"\t-o\t\tonly build content(not building link)\n".
- "\t-n NUMBER\tonly build \#NUMBER article\n");
+ "\t-n NUMBER\tonly build \#NUMBER article\n".
+ "\t-D DATE\t\tdelete article of DATE\n");
}
sub debugmsg($)
@@ -45,10 +46,11 @@ sub builddb($)
buildconfigure($board, \%ch)
if( $Getopt::Std::opt_c || $Getopt::Std::opt_a );
builddata($board, \%bh,
- $Getopt::Std::opt_a,
- $Getopt::Std::opt_o,
- $Getopt::Std::opt_n,
- $Getopt::Std::opt_f,);
+ $Getopt::Std::opt_a || '',
+ $Getopt::Std::opt_o || '',
+ $Getopt::Std::opt_n || '',
+ $Getopt::Std::opt_f || '',
+ $Getopt::Std::opt_D,);
}
sub buildconfigure($$)
@@ -100,7 +102,7 @@ sub buildconfigure($$)
sub builddata($$$$$$)
{
- my($board, $rbh, $rebuild, $contentonly, $number, $force) = @_;
+ my($board, $rbh, $rebuild, $contentonly, $number, $force, $del) = @_;
my(%dat, $dbfn, $idxfn, $y, $m, $d, $t, $currid, $idx);
$dbfn = "$BLOGDATA/$board.db";
@@ -112,6 +114,45 @@ sub builddata($$$$$$)
tie %dat, 'DB_File', $dbfn, O_CREAT | O_RDWR, 0666, $DB_HASH;
$idx = OurNet::FuzzyIndex->new($idxfn);
+
+ if( $del ){
+ my($delmonth);
+ ($y, $m) = (int($del / 10000), int($del / 100) % 100);
+
+ $delmonth = 1;
+ foreach( 0..32 ){
+ $delmonth = 0
+ if( $d != $_ &&
+ exists $dat{sprintf('%04d%02d%02d', $y, $m, $d)} );
+ }
+ delete $dat{ sprintf('%04d%02d', $y, $m) }
+ if( $delmonth );
+
+ $currid = $del;
+ if( $dat{"$currid.prev"} ){
+ $dat{ $dat{"$currid.prev"}.'.next' } = $dat{"$currid.next"};
+ } else{
+ delete $dat{ $dat{"$currid.prev"}.'.next' };
+ }
+ if( $dat{"$currid.prev"} ){
+ $dat{ $dat{"$currid.next"}.'.prev' } = $dat{"$currid.prev"};
+ } else{
+ delete $dat{ $dat{"$currid.next"}.'.prev' };
+ }
+ $dat{head} = $dat{"$currid.next"} if( $dat{head} == $currid );
+ $dat{last} = $dat{"$currid.prev"} if( $dat{last} == $currid );
+
+ delete $dat{$currid};
+ delete $dat{"$currid.next"};
+ delete $dat{"$currid.prev"};
+ delete $dat{"$currid.title"};
+ delete $dat{"$currid.short"};
+ delete $dat{"$currid.content"};
+ delete $dat{"$currid.author"};
+ $idx->delete($currid);
+ goto out;
+ }
+
foreach( $number ? $number : (1..($rbh->{num} - 1)) ){
if( !(($y, $m, $d, $t) =
$rbh->{"$_.title"} =~ /(\d+)\.(\d+).(\d+),(.*)/) ){
@@ -173,6 +214,8 @@ sub builddata($$$$$$)
}
}
}
+
+out:
untie %dat;
$idx->sync();
undef $idx;
diff --git a/mbbsd/announce.c b/mbbsd/announce.c
index e71e3f89..9af9e135 100644
--- a/mbbsd/announce.c
+++ b/mbbsd/announce.c
@@ -1112,8 +1112,11 @@ void BlogMain(int num)
"3.將本文加入部落格\n"
" 將游標所在位置的文章加入部落格\n"
"\n"
- "4.刪除迴響\n");
- switch( getans("請選擇(0-3)?[0]") ){
+ "4.刪除迴響\n"
+ "\n"
+ "5.刪除一篇部落格\n"
+ );
+ switch( getans("請選擇(0-5)?[0]") ){
case '1':
snprintf(genbuf, sizeof(genbuf),
"bin/builddb.pl -c %s", currboard);
@@ -1169,6 +1172,16 @@ void BlogMain(int num)
}
}
break;
+
+ case '5': {
+ char date[9];
+ getdata(16, 0, "請輸入該篇的日期(yyyymmdd): ",
+ date, sizeof(date), DOECHO);
+ snprintf(genbuf, sizeof(genbuf),
+ "bin/builddb.pl -D %s %s", date, currboard);
+ system(genbuf);
+ }
+
default:
exit = 1;
break;