telegram-purple/telegram-adium/TelegramPlugin.m

70 lines
1.6 KiB
Mathematica
Raw Permalink Normal View History

2014-10-05 12:21:29 +02:00
/**
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#import "TelegramPlugin.h"
#import "TelegramService.h"
2014-10-05 12:19:15 +02:00
#import "telegram-purple.h"
2014-10-05 14:19:05 +02:00
#import "mtproto-client.h"
2014-10-05 12:19:15 +02:00
extern void purple_init_telegram_plugin();
@implementation TelegramPlugin
- (void) installPlugin
{
2014-10-05 14:19:05 +02:00
rsa_public_key_name = [self getPkName];
2014-10-05 12:19:15 +02:00
purple_init_telegram_plugin();
[TelegramService registerService];
}
- (void) installLibpurplePlugin
{
}
- (void) loadLibpurplePlugin
{
}
- (void) uninstallPlugin
{
2014-10-05 12:19:15 +02:00
}
- (NSString *)pluginAuthor
{
return @TG_AUTHOR;
}
-(NSString *)pluginVersion
{
return @TG_VERSION;
}
-(NSString *)pluginDescription
{
return @"Telegram";
}
2014-10-05 14:19:05 +02:00
-(char*)getPkName
{
const char* utf8String = (char *)[[[NSBundle bundleForClass: [self class]] pathForResource: @"tg-server" ofType: @"pub"] UTF8String];
size_t len = strlen(utf8String) + 1;
char *buf = talloc0(len);
memcpy(buf, utf8String, len);
return buf;
}
@end