Jacek Kowalski
2012-08-12 bcbe9c0739eb64459a95807ec30b442b3d04edf9
class/BotMsgGG.php
@@ -6,7 +6,6 @@
   private $parser;
   private $html = '';
   private $old = '';
   private $img = '';
   private $format = '';
   
   private $images = array();
@@ -49,19 +48,36 @@
   
   /**
    * Zwraca wiadomość zgodną z BotAPI Gadu-Gadu, którą można przekazać bezpośrednio do BotMastera
    * @param bool $img Czy dołączać obrazki?
    * @param NULL|bool $img Czy dołączać obrazki?
    * @return string
    */
   function getGG($image = TRUE) {
      if($image) {
         $image = $this->img;
   function getGG($image = NULL) {
      if($image === FALSE) {
         $image = '';
      }
      elseif($image === TRUE) {
         $last = array_pop($this->images);
         if(count($this->images) > 0) {
            $push = new BotAPIGG();
            foreach($this->images as $data) {
               $push->putImage($image[3]);
            }
         }
         $image = $last[2].file_get_contents($last[3]);
      }
      else
      {
         $image = '';
         foreach($this->images as $img) {
            $image .= $img[2];
         if(count($this->images) > 0) {
            $push = new BotAPIGG();
            foreach($this->images as $data) {
               if(!$push->existsImage($image[2])) {
                  $push->putImage($image[3]);
               }
            }
         }
         $image = '';
      }
      
      $format = $this->getFormat();
@@ -211,7 +227,7 @@
                  DOMHelper::rtrim($saveto);
                  DOMHelper::insertElement('br', $saveto);
                  
                  $tag = DOMHelper::cloneNode($node, $saveto, 'u');
                  $tag = DOMHelper::cloneNode($node, $saveto, 'span');
                  $this->rewrite($node, $tag, FALSE);
                  $saveto->appendChild($tag);
               break;
@@ -223,7 +239,7 @@
                     $node->setAttribute('start', 1);
                  }
                  
                  $tag = DOMHelper::cloneNode($node, $saveto, 'u');
                  $tag = DOMHelper::cloneNode($node, $saveto, 'span');
                  $this->rewrite($node, $tag, FALSE);
                  $saveto->appendChild($tag);
               break;
@@ -312,14 +328,12 @@
            $crc = hash_file('crc32b', $src);
            $name = sprintf('%08s%08x', $crc, $size);
            
            $this->images[$src] = array($crc, $size, $name);
            $this->images[$src] = array($crc, $size, $name, $src);
         }
         
         $node->setAttribute('name', $name);
         $this->img .= $name.file_get_contents($src);
         
         $this->format .= pack('vC', mb_strlen($this->old), self::FORMAT_IMAGE/*|$this->f_type*/)
         //      //.$this->f_color
         $this->format .= pack('vC', mb_strlen($this->old), self::FORMAT_IMAGE)
               .pack('CCVV', 0x09, 0x01, $size, hexdec($crc));
      }
   }