Jacek Kowalski
2016-02-12 ddfb6ac0d4ebfebc66489f1822c6457cd0ca0a18
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
<?php
/**
 * Klasa konwertuje wiadomość ({@link BotMsg}) do formatu odpowiedniego dla IMified.com
 */
class BotMsgIMI implements BotMsgInterface {
    private $html = '';
    
    /**
     * @param BotMsg $msg Wiadomość do przekonwertowania
     */
    function __construct(BotMsg $msg) {
        $msg->a('<reset />');
        $parser = $msg->getParser();
        $this->html = $parser->saveXML($parser->getElementsByTagName('body')->item(0));
        $this->html = (string)substr($this->html, 6, -7);
    }
    
    /**
     * @return string
     * Zwraca wiadomość zgodną z API IMified.com 
     */
    function __toString() {
        return $this->html;
    }
    
    /**
     * @return string
     * Zwraca wiadomość w formacie HTML z tagami odpowienimi dla IMified.com
     */
    function getHTML() {
        return $this->html;
    }
    
    function sendPullResponse() {
        header('Content-Type: text/html; charset=utf-8');
        echo $this;
    }
}
?>