view libpurple/plugins/test.pl @ 23234:56b39f1a15bf

Refactored and cleaned up the addition of status information to user info / tooltips in oscar prpl. * For consistency with other services, we call the away/available message 'Status' and put it first. * We prepend the status name if there is no message or it's an ICQ buddy. * We make use of the previously UTF8-decoded strings when possible rather than re-decoding with each access. * Properly escape available messages, which are plain text, for the Get Info window * Don't include 'online since' for SMS buddies, as they are always online
author Evan Schoenberg <evan.s@dreskin.net>
date Thu, 29 May 2008 11:39:42 +0000
parents c9dc220e0301
children
line wrap: on
line source

use Purple;

%PLUGIN_INFO = (
	perl_api_version => 2,
	name             => 'Test Perl Plugin',
	version          => '1.0',
	summary          => 'Provides as a test base for the perl plugin.',
	description      => 'Provides as a test base for the perl plugin.',
	author           => 'Etan Reisner <deryni\@pidgin.im>',
	url              => 'http://pidgin.im',

	load             => "plugin_load"
);

sub plugin_init {
	return %PLUGIN_INFO;
}

sub account_status_cb {
	my ($account, $old, $new, $data) = @_;

	Purple::Debug::info("perl test plugin", "In account_status_cb\n");

	Purple::Debug::info("perl test plugin", "Account " .
	                    $account->get_username() . " changed status.\n");
	Purple::Debug::info("perl test plugin", $data . "\n");
}

sub plugin_load {
	my $plugin = shift;

	Purple::Debug::info("perl test plugin", "plugin_load\n");

	Purple::Debug::info("perl test plugin", "Listing accounts.\n");
	foreach $account (Purple::Accounts::get_all()) {
		Purple::Debug::info("perl test plugin", $account->get_username() . "\n");
	}

	Purple::Signal::connect(Purple::Accounts::get_handle(),
	                        "account-status-changed", $plugin,
	                        \&account_status_cb, "test");
}