protected static function getActivityObjectNickname($object, $hints=array())
{
- // XXX: check whatever PoCo calls a nickname first
+ if (!empty($object->nickname)) {
+ return common_nicknamize($object->nickname);
+ }
// Try the definitive ID
exit(1);
}
+class PoCo
+{
+ const NS = 'http://portablecontacts.net/spec/1.0';
+ const USERNAME = 'preferredUsername';
+}
+
/**
* Utilities for turning DOMish things into Activityish things
*
$this->displayName = $this->title;
// @fixme we may have multiple avatars with different resolutions specified
- $this->avatar = ActivityUtils::getLink($element, 'avatar');
+ $this->avatar = ActivityUtils::getLink($element, 'avatar');
+ $this->nickname = ActivityUtils::childContent($element, PoCo::USERNAME, PoCo::NS);
}
}