本文整理汇总了PHP中ProtocolNode类的典型用法代码示例。如果您正苦于以下问题:PHP ProtocolNode类的具体用法?PHP ProtocolNode怎么用?PHP ProtocolNode使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ProtocolNode类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct(\WhatsProt $parent, \ProtocolNode $node)
{
$this->node = $node;
$this->type = $node->getAttribute('type');
$this->parent = $parent;
$this->phoneNumber = $this->parent->getMyNumber();
}
开发者ID:Veivan,项目名称:WABuh,代码行数:7,代码来源:NotificationHandler.php
示例2: process
/**
* @param ProtocolNode $node
*/
public function process($node)
{
// Example of process function, you have to guess a number (psss it's 5)
// If you guess it right you get a gift
$text = $node->getChild('body');
$text = $text->getData();
if ($text && ($text == "5" || trim($text) == "5")) {
$this->wp->sendMessageImage($this->target, "https://s3.amazonaws.com/f.cl.ly/items/2F3U0A1K2o051q1q1e1G/baby-nailed-it.jpg");
$this->wp->sendMessage($this->target, "Congratulations you guessed the right number!");
} elseif (ctype_digit($text)) {
if ((int) $text != "5") {
$this->wp->sendMessage($this->target, "I'm sorry, try again!");
}
}
$text = $node->getChild('body');
$text = $text->getData();
$notify = $node->getAttribute("notify");
echo "\n- " . $notify . ": " . $text . " " . date('H:i') . "\n";
}
开发者ID:jorgtledo,项目名称:whatbot,代码行数:22,代码来源:node.php
示例3: process
/**
* @param ProtocolNode $node
*/
public function process($node)
{
// Example of process function, you have to guess a number (psss it's 5)
// If you guess it right you get a gift
$text = $node->getChild('body');
$text = $text->getData();
if ($text && ($text == "5" || trim($text) == "5")) {
$iconfile = "../../tests/Gift.jpgb64";
$fp = fopen($iconfile, "r");
$icon = fread($fp, filesize($iconfile));
fclose($fp);
$this->wp->sendMessageImage($this->target, "https://mms604.whatsapp.net/d11/26/09/8/5/85a13e7812a5e7ad1f8071319d9d1b43.jpg", "hero.jpg", 84712, $icon);
$this->wp->sendMessage($this->target, "Congratulations you guessed the right number!");
} else {
$this->wp->sendMessage($this->target, "I'm sorry, try again!");
}
}
开发者ID:diamondobama,项目名称:WhatsAPI,代码行数:20,代码来源:exampleFunctional.php
示例4: sendNode
/**
* Send node to the WhatsApp server.
* @param ProtocolNode $node
*/
protected function sendNode($node, $encrypt = true)
{
$this->debugPrint($node->nodeString("tx ") . "\n");
$this->sendData($this->writer->write($node, $encrypt));
}
开发者ID:micschk,项目名称:WhatsAPI,代码行数:9,代码来源:whatsprot.class.php
示例5: handleGroupV2InfoResponse
/**
* @param ProtocolNode $groupNode
* @param mixed $fromGetGroups
*/
protected function handleGroupV2InfoResponse(ProtocolNode $groupNode, $fromGetGroups = false)
{
$creator = $groupNode->getAttribute('creator');
$creation = $groupNode->getAttribute('creation');
$subject = $groupNode->getAttribute('subject');
$groupID = $groupNode->getAttribute('id');
$participants = array();
$admins = array();
if ($groupNode->getChild(0) != null) {
foreach ($groupNode->getChildren() as $child) {
$participants[] = $child->getAttribute('jid');
if ($child->getAttribute('type') == "admin") {
$admins[] = $child->getAttribute('jid');
}
}
}
$this->eventManager()->fire("onGetGroupV2Info", array($this->phoneNumber, $groupID, $creator, $creation, $subject, $participants, $admins, $fromGetGroups));
}
开发者ID:rezanadimi72,项目名称:Chat-API,代码行数:22,代码来源:whatsprot.class.php
示例6: process
public function process(\ProtocolNode $node)
{
$text = $node->getChild('body');
$text = $text->getData();
$notify = $node->getAttribute('notify');
echo "\n- " . $notify . ': ' . $text . ' ' . date('H:i') . "\n";
}
开发者ID:jonathan-r,项目名称:Chat-API,代码行数:7,代码来源:Simple+CLI+client.php
示例7: sendNode
/**
* Send node to the WhatsApp server.
* @param ProtocolNode $node
* @param bool $encrypt
*/
public function sendNode($node, $encrypt = true)
{
$this->timeout = time();
$this->debugPrint($node->nodeString("tx ") . "\n");
$this->sendData($this->writer->write($node, $encrypt));
}
开发者ID:Nanod10,项目名称:Chat-API,代码行数:11,代码来源:whatsprot.class.php
示例8: writeInternal
/**
* @param ProtocolNode $node
*/
protected function writeInternal($node)
{
$len = 1;
if ($node->getAttributes() != null) {
$len += count($node->getAttributes()) * 2;
}
if (count($node->getChildren()) > 0) {
$len += 1;
}
if (strlen($node->getData()) > 0) {
$len += 1;
}
$this->writeListStart($len);
$this->writeString($node->getTag());
$this->writeAttributes($node->getAttributes());
if (strlen($node->getData()) > 0) {
$this->writeBytes($node->getData());
}
if ($node->getChildren()) {
$this->writeListStart(count($node->getChildren()));
foreach ($node->getChildren() as $child) {
$this->writeInternal($child);
}
}
}
开发者ID:Aldairnatan,项目名称:WhatsAPI-Official,代码行数:28,代码来源:protocol.class.php
示例9: getAttributesHashFromNode
/**
* Get attributes from Node
*
* @param ProtocolNode $node
* @return string
*/
public function getAttributesHashFromNode($node)
{
$txt = '';
$attributes = $node->getAttributes();
if ($attributes) {
foreach ($attributes as $key => $value) {
$txt .= $key . ': ' . $value . "\n";
}
}
return $txt;
}
开发者ID:shinichi81,项目名称:whatsapi-1,代码行数:17,代码来源:Listener.php
示例10: processEncryptedNode
protected function processEncryptedNode(ProtocolNode $node)
{
if ($this->parent->getAxolotlStore() == null) {
return;
}
//is a chat encrypted message
$from = $node->getAttribute('from');
if (strpos($from, Constants::WHATSAPP_SERVER) !== false) {
$author = ExtractNumber($node->getAttribute('from'));
$version = $node->getChild(0)->getAttribute('v');
$encType = $node->getChild(0)->getAttribute('type');
$encMsg = $node->getChild('enc')->getData();
if (!$this->parent->getAxolotlStore()->containsSession($author, 1)) {
//we don't have the session to decrypt, save it in pending and process it later
$this->parent->addPendingNode($node);
$this->parent->logFile('info', 'Requesting cipher keys from {from}', ['from' => $author]);
$this->parent->sendGetCipherKeysFromUser($author);
} else {
//decrypt the message with the session
if ($node->getChild('enc')->getAttribute('count') == '') {
$this->parent->setRetryCounter($node->getAttribute('id'), 1);
}
if ($version == '2') {
if (!in_array($author, $this->parent->getv2Jids())) {
$this->parent->setv2Jids($author);
}
}
$plaintext = $this->decryptMessage($from, $encMsg, $encType, $node->getAttribute('id'), $node->getAttribute('t'));
//$plaintext ="A";
if ($plaintext === false) {
$this->parent->sendRetry($this->node, $from, $node->getAttribute('id'), $node->getAttribute('t'));
$this->parent->logFile('info', 'Couldn\'t decrypt message with {id} id from {from}. Retrying...', ['id' => $node->getAttribute('id'), 'from' => ExtractNumber($from)]);
return $node;
// could not decrypt
}
if (isset($this->parent->retryNodes[$node->getAttribute('id')])) {
unset($this->parent->retryNodes[$node->getAttribute('id')]);
}
if (isset($this->parent->retryCounters[$node->getAttribute('id')])) {
unset($this->parent->retryCounters[$node->getAttribute('id')]);
}
switch ($node->getAttribute('type')) {
case 'text':
$node->addChild(new ProtocolNode('body', null, null, $plaintext));
break;
case 'media':
switch ($node->getChild('enc')->getAttribute('mediatype')) {
case 'image':
$image = new ImageMessage();
$image->parseFromString($plaintext);
$keys = (new HKDFv3())->deriveSecrets($image->getRefKey(), hex2bin('576861747341707020496d616765204b657973'), 112);
$iv = substr($keys, 0, 16);
$keys = substr($keys, 16);
$parts = str_split($keys, 32);
$key = $parts[0];
$macKey = $parts[1];
$refKey = $parts[2];
//should be changed to nice curl, no extra headers :D
$file_enc = file_get_contents($image->getUrl());
//requires mac check , last 10 chars
$mac = substr($file_enc, -10);
$cipherImage = substr($file_enc, 0, strlen($file_enc) - 10);
$decrypted_image = pkcs5_unpad(mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $cipherImage, MCRYPT_MODE_CBC, $iv));
//$save_file = tempnam(sys_get_temp_dir(),"WAIMG_");
//file_put_contents($save_file,$decrypted_image);
$child = new ProtocolNode('media', ['size' => $image->getLength(), 'caption' => $image->getCaption(), 'url' => $image->getUrl(), 'mimetype' => $image->getMimeType(), 'filehash' => bin2hex($image->getSha256()), 'width' => 0, 'height' => 0, 'file' => $decrypted_image, 'type' => 'image'], null, $image->getThumbnail());
$node->addChild($child);
break;
}
break;
}
$this->parent->logFile('info', 'Decrypted message with {id} from {from}', ['id' => $node->getAttribute('id'), 'from' => ExtractNumber($from)]);
return $node;
}
} else {
$author = ExtractNumber($node->getAttribute('participant'));
$group_number = ExtractNumber($node->getAttribute('from'));
$childs = $node->getChildren();
foreach ($childs as $child) {
if ($child->getAttribute('type') == 'pkmsg' || $child->getAttribute('type') == 'msg') {
if (!$this->parent->getAxolotlStore()->containsSession($author, 1)) {
$this->parent->addPendingNode($node);
$this->parent->sendGetCipherKeysFromUser($author);
break;
} else {
//decrypt senderKey and save it
$encType = $child->getAttribute('type');
$encMsg = $child->getData();
$from = $node->getAttribute('participant');
$version = $child->getAttribute('v');
if ($node->getChild('enc')->getAttribute('count') == '') {
$this->parent->setRetryCounter($node->getAttribute('id'), 1);
}
if ($version == '2') {
if (!in_array($author, $this->parent->getv2Jids())) {
$this->parent->setv2Jids($author);
}
}
$skip_unpad = $node->getChild('enc', ['type' => 'skmsg']) == null;
$senderKeyBytes = $this->decryptMessage($from, $encMsg, $encType, $node->getAttribute('id'), $node->getAttribute('t'), $node->getAttribute('from'), $skip_unpad);
//.........这里部分代码省略.........
开发者ID:piersoft,项目名称:Chat-API,代码行数:101,代码来源:MessageHandler.php
示例11: processEncryptedNode
protected function processEncryptedNode(ProtocolNode $node)
{
if ($this->parent->getAxolotlStore() == null) {
return null;
}
//is a chat encrypted message
$from = $node->getAttribute('from');
if (strpos($from, Constants::WHATSAPP_SERVER) !== false) {
$author = ExtractNumber($node->getAttribute("from"));
$version = $node->getChild(0)->getAttribute("v");
$encType = $node->getChild(0)->getAttribute("type");
$encMsg = $node->getChild("enc")->getData();
if (!$this->parent->getAxolotlStore()->containsSession($author, 1)) {
//we don't have the session to decrypt, save it in pending and process it later
$this->parent->addPendingNode($node);
$this->parent->logFile('info', 'Requesting cipher keys from {from}', array('from' => $author));
$this->parent->sendGetCipherKeysFromUser($author);
} else {
//decrypt the message with the session
if ($node->getChild("enc")->getAttribute('count') == "") {
$this->parent->setRetryCounter = 1;
}
if ($version == "2") {
if (!in_array($author, $this->parent->getv2Jids())) {
$this->parent->setv2Jids($author);
}
}
$plaintext = $this->decryptMessage($from, $encMsg, $encType, $node->getAttribute('id'), $node->getAttribute('t'));
if (!$plaintext) {
$this->parent->sendRetry($from, $node->getAttribute('id'), $node->getAttribute('t'));
$this->parent->logFile('info', 'Couldn\'t decrypt message with {id} id from {from}. Retrying...', array('id' => $node->getAttribute('id'), 'from' => ExtractNumber($from)));
return $node;
// could not decrypt
}
switch ($node->getAttribute("type")) {
case "text":
$node->addChild(new ProtocolNode("body", null, null, $plaintext));
break;
case "media":
switch ($node->getChild("enc")->getAttribute("mediatype")) {
case "image":
$image = new ImageMessage();
$image->parseFromString($plaintext);
break;
}
break;
}
$this->parent->logFile('info', 'Decrypted message with {id} from {from}', array('id' => $node->getAttribute('id'), 'from' => ExtractNumber($from)));
return $node;
}
} else {
$author = ExtractNumber($node->getAttribute("participant"));
$group_number = ExtractNumber($node->getAttribute("from"));
$childs = $node->getChildren();
foreach ($childs as $child) {
if ($child->getAttribute("type") == "pkmsg" || $child->getAttribute("type") == "msg") {
if (!$this->parent->getAxolotlStore()->containsSession($author, 1)) {
$this->parent->addPendingNode($node);
$this->parent->sendGetCipherKeysFromUser($author);
break;
} else {
//decrypt senderKey and save it
$encType = $child->getAttribute("type");
$encMsg = $child->getData();
$from = $node->getAttribute("participant");
$version = $child->getAttribute("v");
if ($node->getChild("enc")->getAttribute('count') == "") {
$this->parent->retryCounter = 1;
}
if ($version == "2") {
if (!in_array($author, $this->parent->getv2Jids())) {
$this->parent->setv2Jids($author);
}
}
$skip_unpad = $node->getChild("enc", ["type" => "skmsg"]) == null;
$senderKeyBytes = $this->decryptMessage($from, $encMsg, $encType, $node->getAttribute('id'), $node->getAttribute('t'), $node->getAttribute("from"), $skip_unpad);
if ($senderKeyBytes) {
if (!$skip_unpad) {
$senderKeyGroupMessage = new SenderKeyGroupMessage();
$senderKeyGroupMessage->parseFromString($senderKeyBytes);
} else {
$senderKeyGroupMessage = new SenderKeyGroupData();
try {
$senderKeyGroupMessage->parseFromString($senderKeyBytes);
} catch (Exception $ex) {
try {
$senderKeyGroupMessage->parseFromString(substr($senderKeyBytes, 0, -1));
} catch (Exception $ex) {
return $node;
}
}
$message = $senderKeyGroupMessage->getMessage();
$senderKeyGroupMessage = $senderKeyGroupMessage->getSenderKey();
}
$senderKey = new SenderKeyDistributionMessage(null, null, null, null, $senderKeyGroupMessage->getSenderKey());
$groupSessionBuilder = new GroupSessionBuilder($this->axolotlStore);
$groupSessionBuilder->processSender($group_number . ":" . $author, $senderKey);
if (isset($message)) {
$this->parent->sendReceipt($node, 'receipt', $this->parent->getJID($this->phoneNumber));
$node->addChild(new ProtocolNode("body", null, null, $message));
//.........这里部分代码省略.........
开发者ID:RhuanGonzaga,项目名称:WhatsBot,代码行数:101,代码来源:MessageHandler.php
示例12: sendMessageReceived
/**
* Tell the server we received the message.
*
* @param ProtocolNode $msg
* The ProtocolTreeNode that contains the message.
*/
protected function sendMessageReceived($msg, $type = null)
{
if ($type) {
$messageHash["type"] = $type;
}
$messageHash = array();
$messageHash["to"] = $msg->getAttribute("from");
$messageHash["id"] = $msg->getAttribute("id");
$messageNode = new ProtocolNode("receipt", $messageHash, null, null);
$this->sendNode($messageNode);
$this->eventManager()->fireSendMessageReceived($this->phoneNumber, $msg->getAttribute("id"), $msg->getAttribute("from"), $type);
}
开发者ID:hermansantos,项目名称:whatsapi,代码行数:18,代码来源:whatsprot.class.php
示例13: sendReceipt
/**
* Tell the server we received the message.
*
* @param ProtocolNode $node The ProtocolTreeNode that contains the message.
* @param string $type
* @param string $participant
* @param string $callId
*/
public function sendReceipt($node, $type = "read", $participant = null, $callId = null)
{
$messageHash = array();
if ($type == "read") {
$messageHash["type"] = $type;
}
if ($participant != null) {
$messageHash["participant"] = $participant;
}
$messageHash["to"] = $node->getAttribute("from");
$messageHash["id"] = $node->getAttribute("id");
$messageHash["t"] = $node->getAttribute("t");
if ($callId != null) {
$offerNode = new ProtocolNode("offer", array("call-id" => $callId), null, null);
$messageNode = new ProtocolNode("receipt", $messageHash, array($offerNode), null);
} else {
$messageNode = new ProtocolNode("receipt", $messageHash, null, null);
}
$this->sendNode($messageNode);
$this->eventManager()->fire("onSendMessageReceived", array($this->phoneNumber, $node->getAttribute("id"), $node->getAttribute("from"), $type));
}
开发者ID:moshew,项目名称:A-Report_SERVER,代码行数:29,代码来源:whatsprot.class.php
示例14: process
public function process(\ProtocolNode $node)
{
if ($node->getAttribute('type') == 'text') {
$text = $node->getChild('body');
$text = $text->getData();
$number = ExtractNumber($node->getAttribute('from'));
$nickname = findNicknameByPhone($number);
echo "\n- " . $nickname . ': ' . $text . ' ' . date('H:i') . "\n";
}
}
开发者ID:Veivan,项目名称:WABuh,代码行数:10,代码来源:client.php
示例15: isCli
/**
* check if call is from command line.
*
* @return bool
*/
private static function isCli()
{
if (self::$cli === null) {
//initial setter
if (php_sapi_name() == 'cli') {
self::$cli = true;
} else {
self::$cli = false;
}
}
return self::$cli;
}
开发者ID:Veivan,项目名称:WABuh,代码行数:17,代码来源:protocol.class.php
注:本文中的ProtocolNode类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论