William Bowling is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againadium / Plugins / Purple Service / AMPurpleJabberFormGenerator.m
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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 | //
// AMPurpleJabberFormGenerator.m
// Adium
//
// Created by Andreas Monitzer on 2007-06-26.
// Copyright 2007 Andreas Monitzer. All rights reserved.
//
#import "AMPurpleJabberFormGenerator.h"
@interface AMPurpleJabberFormField (protectedMethods)
- (id)initWithXML:(xmlnode*)xml;
@end
@implementation AMPurpleJabberFormField
/* factory method pattern */
+ (AMPurpleJabberFormField*)fieldForXML:(xmlnode*)xml {
const char *fieldtype = xmlnode_get_attrib(xml,"type");
if(!fieldtype)
return nil;
Class class;
if(!strcmp(fieldtype,"boolean"))
class = [AMPurpleJabberFormFieldBoolean class];
else if(!strcmp(fieldtype,"fixed"))
class = [AMPurpleJabberFormFieldFixed class];
else if(!strcmp(fieldtype,"hidden"))
class = [AMPurpleJabberFormFieldHidden class];
else if(!strcmp(fieldtype,"jid-multi"))
class = [AMPurpleJabberFormFieldJidMulti class];
else if(!strcmp(fieldtype,"jid-single"))
class = [AMPurpleJabberFormFieldJidSingle class];
else if(!strcmp(fieldtype,"list-multi"))
class = [AMPurpleJabberFormFieldListMulti class];
else if(!strcmp(fieldtype,"list-single"))
class = [AMPurpleJabberFormFieldListSingle class];
else if(!strcmp(fieldtype,"text-multi"))
class = [AMPurpleJabberFormFieldTextMulti class];
else if(!strcmp(fieldtype,"text-private"))
class = [AMPurpleJabberFormFieldTextPrivate class];
else if(!strcmp(fieldtype,"text-single"))
class = [AMPurpleJabberFormFieldTextSingle class];
else
return nil;
return [[[class alloc] initWithXML:xml] autorelease];
}
- (id)initWithXML:(xmlnode*)xml {
if((self = [self init])) {
if(xmlnode_get_child(xml,"required"))
required = YES;
const char *labelstr = xmlnode_get_attrib(xml,"label");
if(labelstr)
[self setLabel:[NSString stringWithUTF8String:labelstr]];
const char *varstr = xmlnode_get_attrib(xml,"var");
if(varstr)
[self setVariable:[NSString stringWithUTF8String:varstr]];
xmlnode *descnode = xmlnode_get_child(xml,"desc");
if(descnode) {
const char *descstr = xmlnode_get_data(descnode);
if(descstr)
[self setDescription:[NSString stringWithUTF8String:descstr]];
}
}
return self;
}
- (void)setRequired:(BOOL)_required {
required = _required;
}
- (BOOL)required {
return required;
}
- (void)setLabel:(NSString*)_label {
id old = label;
label = [_label copy];
[old release];
}
- (NSString*)label {
return label;
}
- (void)setVariable:(NSString*)_var {
id old = var;
var = [_var copy];
[old release];
}
- (NSString*)var {
return var;
}
- (void)setDescription:(NSString*)_desc {
id old = desc;
desc = [_desc copy];
[old release];
}
- (NSString*)desc {
return desc;
}
- (void)dealloc {
[label release];
[var release];
[desc release];
[super dealloc];
}
- (xmlnode*)xml {
xmlnode *result = xmlnode_new("field");
if(label)
xmlnode_set_attrib(result,"label",[label UTF8String]);
if(var)
xmlnode_set_attrib(result,"var",[var UTF8String]);
if(required)
xmlnode_new_child(result,"required");
if(desc)
xmlnode_insert_data(xmlnode_new_child(result,"desc"), [desc UTF8String], -1);
return result;
}
@end
@implementation AMPurpleJabberFormFieldBoolean
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
xmlnode *valuenode = xmlnode_get_child(xml,"value");
if(valuenode) {
const char *v = xmlnode_get_data(valuenode);
if(v && (!strcmp(v, "1") || !strcmp(v, "true")))
[self setBoolValue:YES];
}
}
return self;
}
- (void)setBoolValue:(BOOL)_value {
value = _value;
}
- (BOOL)boolValue {
return value;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","boolean");
if(value)
xmlnode_insert_data(xmlnode_new_child(result,"value"),"1",-1);
return result;
}
@end
@implementation AMPurpleJabberFormFieldFixed
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
xmlnode *valuenode = xmlnode_get_child(xml,"value");
if(valuenode) {
const char *valstr = xmlnode_get_data(valuenode);
if(valstr)
[self setStringValue:[NSString stringWithUTF8String:valstr]];
}
}
return self;
}
- (void)dealloc {
[value release];
[super dealloc];
}
- (void)setStringValue:(NSString*)_value {
id old = value;
value = [_value copy];
[old release];
}
- (NSString*)stringValue {
return value;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","fixed");
if(value)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[value UTF8String],-1);
return result;
}
@end
@implementation AMPurpleJabberFormFieldHidden
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
xmlnode *valuenode = xmlnode_get_child(xml,"value");
if(valuenode) {
const char *valstr = xmlnode_get_data(valuenode);
if(valstr)
[self setStringValue:[NSString stringWithUTF8String:valstr]];
}
}
return self;
}
- (void)dealloc {
[value release];
[super dealloc];
}
- (void)setStringValue:(NSString*)_value {
id old = value;
value = [_value copy];
[old release];
}
- (NSString*)stringValue {
return value;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","hidden");
if(value)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[value UTF8String],-1);
return result;
}
@end
@implementation AMPurpleJabberFormFieldJidMulti
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
NSMutableArray *values = [NSMutableArray array];
xmlnode *valuenode;
for(valuenode = xml->child; valuenode; valuenode = valuenode->next) {
if(valuenode->type == XMLNODE_TYPE_TAG && !strcmp(valuenode->name, "value")) {
const char *content = xmlnode_get_data(valuenode);
if(content)
[values addObject:[NSString stringWithUTF8String:content]];
}
}
[self setJIDs:values];
}
return self;
}
- (void)dealloc {
[jids release];
[super dealloc];
}
- (void)setJIDs:(NSArray*)_jids {
id old = jids;
jids = [_jids copy];
[old release];
}
- (NSArray*)jids {
return jids;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","jid-multi");
if(jids) {
NSString *jid;
for(jid in jids)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[jid UTF8String],-1);
}
return result;
}
@end
@implementation AMPurpleJabberFormFieldJidSingle
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
xmlnode *value = xmlnode_get_child(xml,"value");
if(value) {
const char *valstr = xmlnode_get_data(value);
if(valstr)
[self setJID:[NSString stringWithUTF8String:valstr]];
}
}
return self;
}
- (void)dealloc {
[jid release];
[super dealloc];
}
- (void)setJID:(NSString*)_jid {
id old = jid;
jid = [_jid copy];
[old release];
}
- (NSString*)jid {
return jid;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","jid-single");
if(jid)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[jid UTF8String],-1);
return result;
}
@end
@implementation AMPurpleJabberFormFieldListMulti
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
NSMutableArray *newvalues = [NSMutableArray array];
xmlnode *valuenode;
for(valuenode = xml->child; valuenode; valuenode = valuenode->next) {
if(valuenode->type == XMLNODE_TYPE_TAG && !strcmp(valuenode->name, "value")) {
const char *content = xmlnode_get_data(valuenode);
if(content)
[newvalues addObject:[NSString stringWithUTF8String:content]];
}
}
[self setStringValues:newvalues];
NSMutableArray *newoptions = [NSMutableArray array];
xmlnode *option;
for(option = xml->child; option; option = option->next) {
if(option->type == XMLNODE_TYPE_TAG && !strcmp(option->name, "option")) {
const char *labelstr = xmlnode_get_attrib(option,"label");
xmlnode *valuenode = xmlnode_get_child(option,"value");
if(!valuenode) {
/* invalid field */
[self release];
return nil;
}
const char *valuestr = xmlnode_get_data(valuenode);
if(!valuestr) {
[self release];
return nil;
}
[newoptions addObject:[NSDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithUTF8String:valuestr], @"value",
labelstr?[NSString stringWithUTF8String:labelstr]:nil, @"label",
nil]];
}
}
[self setOptions:newoptions];
}
return self;
}
- (void)dealloc {
[options release];
[values release];
[super dealloc];
}
- (void)setOptions:(NSArray*)_options {
id old = options;
options = [_options copy];
[old release];
}
- (NSArray*)options {
return options;
}
- (void)setStringValues:(NSArray*)_values {
id old = values;
values = [_values copy];
[old release];
}
- (NSArray*)stringValues {
return values;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","list-multi");
if(options) {
for(NSDictionary *option in options) {
xmlnode *optnode = xmlnode_new_child(result,"option");
xmlnode_set_attrib(optnode,"label",[[option objectForKey:@"label"] UTF8String]);
xmlnode_insert_data(xmlnode_new_child(optnode,"value"),[[option objectForKey:@"value"] UTF8String],-1);
}
NSString *value;
for(value in values)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[value UTF8String],-1);
}
return result;
}
@end
@implementation AMPurpleJabberFormFieldListSingle
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
xmlnode *valuenode = xmlnode_get_child(xml,"value");
if(valuenode) {
const char *valstr = xmlnode_get_data(valuenode);
if(valstr)
[self setStringValue:[NSString stringWithUTF8String:valstr]];
}
NSMutableArray *newoptions = [NSMutableArray array];
xmlnode *option;
for(option = xml->child; option; option = option->next) {
if(option->type == XMLNODE_TYPE_TAG && !strcmp(option->name, "option")) {
const char *labelstr = xmlnode_get_attrib(option,"label");
xmlnode *valuenode = xmlnode_get_child(option,"value");
if(!valuenode) {
/* invalid field */
[self release];
return nil;
}
const char *valuestr = xmlnode_get_data(valuenode);
if(!valuestr) {
[self release];
return nil;
}
[newoptions addObject:[NSDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithUTF8String:valuestr], @"value",
labelstr?[NSString stringWithUTF8String:labelstr]:nil, @"label",
nil]];
}
}
[self setOptions:newoptions];
}
return self;
}
- (void)dealloc {
[options release];
[value release];
[super dealloc];
}
- (void)setStringValue:(NSString*)_value {
id old = value;
value = [_value copy];
[old release];
}
- (NSString*)stringValue {
return value;
}
- (void)setOptions:(NSArray*)_options {
id old = options;
options = [_options copy];
[old release];
}
- (NSArray*)options {
return options;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","list-single");
if(options) {
NSDictionary *option;
for(option in options) {
xmlnode *optnode = xmlnode_new_child(result,"option");
xmlnode_set_attrib(optnode,"label",[[option objectForKey:@"label"] UTF8String]);
xmlnode_insert_data(xmlnode_new_child(optnode,"value"),[[option objectForKey:@"value"] UTF8String],-1);
}
if(value)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[value UTF8String],-1);
}
return result;
}
@end
@implementation AMPurpleJabberFormFieldTextMulti
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
NSMutableArray *values = [NSMutableArray array];
xmlnode *valuenode;
for(valuenode = xml->child; valuenode; valuenode = valuenode->next) {
if(valuenode->type == XMLNODE_TYPE_TAG && !strcmp(valuenode->name, "value")) {
const char *content = xmlnode_get_data(valuenode);
if(content)
[values addObject:[NSString stringWithUTF8String:content]];
}
}
[self setStringValue:[values componentsJoinedByString:@"\n"]];
}
return self;
}
- (void)dealloc {
[value release];
[super dealloc];
}
- (void)setStringValue:(NSString*)_value {
id old = value;
value = [_value copy];
[old release];
}
- (NSString*)stringValue {
return value;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","text-multi");
if(value) {
for (NSString *line in [value componentsSeparatedByString:@"\n"])
xmlnode_insert_data(xmlnode_new_child(result,"value"),[line UTF8String],-1);
}
return result;
}
@end
@implementation AMPurpleJabberFormFieldTextSingle
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
xmlnode *valuenode = xmlnode_get_child(xml,"value");
if(valuenode) {
const char *valstr = xmlnode_get_data(valuenode);
if(valstr)
[self setStringValue:[NSString stringWithUTF8String:valstr]];
}
}
return self;
}
- (void)dealloc {
[value release];
[super dealloc];
}
- (void)setStringValue:(NSString*)_value {
id old = value;
value = [_value copy];
[old release];
}
- (NSString*)stringValue {
return value;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","text-single");
if(value)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[value UTF8String],-1);
return result;
}
@end
@implementation AMPurpleJabberFormFieldTextPrivate
- (id)initWithXML:(xmlnode*)xml {
if((self = [super initWithXML:xml])) {
xmlnode *valuenode = xmlnode_get_child(xml,"value");
if(valuenode) {
const char *valstr = xmlnode_get_data(valuenode);
if(valstr)
[self setStringValue:[NSString stringWithUTF8String:valstr]];
}
}
return self;
}
- (void)dealloc {
[value release];
[super dealloc];
}
- (void)setStringValue:(NSString*)_value {
id old = value;
value = [_value copy];
[old release];
}
- (NSString*)stringValue {
return value;
}
- (xmlnode*)xml {
xmlnode *result = [super xml];
xmlnode_set_attrib(result,"type","text-private");
if(value)
xmlnode_insert_data(xmlnode_new_child(result,"value"),[value UTF8String],-1);
return result;
}
@end
@implementation AMPurpleJabberFormGenerator
- (id)initWithType:(enum AMPurpleJabberFormType)_type {
if((self = [super init])) {
type = _type;
fields = [[NSMutableArray alloc] init];
}
return self;
}
- (id)initWithXML:(xmlnode*)xml {
if((self = [super init])) {
// verify that this is really a jabber:x:data
if(xml->type != XMLNODE_TYPE_TAG || strcmp(xml->name, "x")) {
[self release];
return nil;
}
const char *xmlns = xmlnode_get_namespace(xml);
if(!xmlns || strcmp(xmlns,"jabber:x:data")) {
[self release];
return nil;
}
// read global settings
const char *typestr = xmlnode_get_attrib(xml,"type");
if(!typestr) {
[self release];
return nil;
}
if(!strcmp(typestr, "form"))
type = form;
else if(!strcmp(typestr, "submit"))
type = submit;
else if(!strcmp(typestr, "cancel"))
type = cancel;
else if(!strcmp(typestr, "result"))
type = result;
else { /* unknown form type */
[self release];
return nil;
}
xmlnode *titlenode = xmlnode_get_child(xml,"title");
if(titlenode) {
const char *titlestr = xmlnode_get_data(titlenode);
if(titlestr)
[self setTitle:[NSString stringWithUTF8String:titlestr]];
}
xmlnode *instructionsnode = xmlnode_get_child(xml,"instructions");
if(instructionsnode) {
const char *instructionsstr = xmlnode_get_data(instructionsnode);
if(instructionsstr)
[self setInstructions:[NSString stringWithUTF8String:instructionsstr]];
}
// get fields
fields = [[NSMutableArray alloc] init];
xmlnode *field;
for(field = xml->child; field; field = field->next) {
if(field->type == XMLNODE_TYPE_TAG && !strcmp(field->name,"field")) {
AMPurpleJabberFormField *fieldobj = [AMPurpleJabberFormField fieldForXML:field];
if(fieldobj)
[self addField:fieldobj];
}
}
}
return self;
}
- (void)dealloc {
[title release];
[instructions release];
[fields release];
[super dealloc];
}
- (void)setTitle:(NSString*)_title {
id old = title;
title = [_title copy];
[old release];
}
- (void)setInstructions:(NSString*)_instructions {
id old = instructions;
instructions = [_instructions copy];
[old release];
}
- (NSString*)title {
return title;
}
- (NSString*)instructions {
return instructions;
}
- (enum AMPurpleJabberFormType)type {
return type;
}
- (void)addField:(AMPurpleJabberFormField*)field {
[fields addObject:field];
}
- (void)removeField:(AMPurpleJabberFormField*)field {
[fields removeObject:field];
}
- (NSArray*)fields {
return fields;
}
- (xmlnode*)xml {
xmlnode *xml = xmlnode_new("x");
xmlnode_set_namespace(xml,"jabber:x:data");
switch(type) {
case form:
xmlnode_set_attrib(xml,"type","form");
break;
case submit:
xmlnode_set_attrib(xml,"type","submit");
break;
case cancel:
xmlnode_set_attrib(xml,"type","cancel");
break;
case result:
xmlnode_set_attrib(xml,"type","result");
break;
}
if(title)
xmlnode_insert_data(xmlnode_new_child(xml,"title"),[title UTF8String],-1);
if(instructions)
xmlnode_insert_data(xmlnode_new_child(xml,"instructions"),[instructions UTF8String],-1);
AMPurpleJabberFormField *field;
for(field in fields) {
xmlnode *fieldxml = [field xml];
if(fieldxml)
xmlnode_insert_child(xml,fieldxml);
}
return xml;
}
@end
|