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
|
#
# Copyright (c) 2006-2007 by FlashCode <flashcode@flashtux.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# Save current buffer to a file.
#
# History:
#
# 2007-08-10, FlashCode <flashcode@flashtux.org>:
# version 0.3: upgraded licence to GPL 3
# 2007-06-12, FlashCode <flashcode@flashtux.org>:
# version 0.2: added filename completion
# 2006-10-27, FlashCode <flashcode@flashtux.org>:
# version 0.1: initial release
#
use strict;
my $version = "0.3";
weechat::register("bufsave", $version, "", "Save buffer content to a file");
weechat::add_command_handler("bufsave", "bufsave_cmd",
"save current buffer to a file",
"filename",
"filename: target file (must not exist)",
"%f");
sub bufsave_cmd
{
if ($#_ == 1)
{
my $server = shift;
my $filename = shift;
return weechat::PLUGIN_RC_OK if (! $filename);
if (-e $filename)
{
weechat::print("Error: target file already exists!");
return weechat::PLUGIN_RC_KO;
}
my $channel = weechat::get_info("channel");
my @bc = weechat::get_buffer_data($server, $channel);
if (@bc)
{
if (! open(FILE, ">$filename"))
{
weechat::print("Error writing to target file!");
return weechat::PLUGIN_RC_KO;
}
foreach my $line (reverse(@bc))
{
my %l = %$line;
print FILE "$l{date} " if ($l{date});
print FILE "\<$l{nick}\> " if ($l{nick});
print FILE "$l{data}\n";
}
close(FILE);
}
else
{
weechat::print("Error: no buffer data");
return weechat::PLUGIN_RC_KO;
}
}
return weechat::PLUGIN_RC_OK;
}
|