summaryrefslogtreecommitdiffstats
path: root/callagent/SIPResponse.st
blob: 0058849d678b2c474a2ef075a589ba08fe764c00 (plain)
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
"
 (C) 2010-2011 by Holger Hans Peter Freyther
 All Rights Reserved

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Affero General Public License for more details.

 You should have received a copy of the GNU Affero General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
"

Object subclass: SIPResponse [
    | code phrase params sdp |

    <category: 'OsmoSIP-Callagent'>

    SIPResponse class >> parseFrom: aParseDict [
        | res |
        res := (self
            code: (aParseDict first at: 3) with: (aParseDict first at: 5))
            sdp: (aParseDict fourth);
            yourself.

        aParseDict second do: [:each |
            res addParameter: each first first
                value: each first third
        ].

        ^ res
    ]

    SIPResponse class >> code: code with: phrase [
        <category: 'factory'>
        ^ self new
            instVarNamed: #code put: code;
            instVarNamed: #phrase put: phrase;
            yourself
    ]

    code: aCode [
        <category: 'accessing'>
        code := aCode
    ]

    pharse: aPhrase [
        <category: 'accessing'>
        phrase := aPhrase
    ]

    code [
        <category: 'accessing'>
        ^ code
    ]

    phrase [
        <category: 'accessing'>
        ^ phrase
    ]

    parameters [
        <category: 'accessing'>
        ^ params ifNil: [params := OrderedCollection new]
    ]

    addParameter: aPar value: aValue [
        <category: 'accessing'>
        self parameters add: (aPar -> aValue).
    ]

    parameter: aPar [
        ^ self parameter: aPar ifAbsent: []
    ]

    parameter: aPar ifAbsent: absent [
        self parameters do: [:each |
            (each key sameAs: aPar) ifTrue: [^ each value]].

        ^absent value.
    ]

    sdp: aSdp [
        sdp := aSdp
    ]

    sdp [
        ^ sdp
    ]

    asDatagram [
        | out |

        out := WriteStream on: (String new).

        out
            nextPutAll: 'SIP/2.0 ';
            nextPutAll: code asString;
            nextPutAll: ' ';
            nextPutAll: phrase;
            cr; nl.

        self parameters do: [:each |
            out
                nextPutAll: each key;
                nextPutAll: ': ';
                nextPutAll: each value asFoldedString;
                cr; nl.
        ].

        sdp isNil
            ifTrue: [out cr; nl.]
            ifFalse: [
                out
                    nextPutAll: 'Content-Type: application/sdp'; cr; nl;
                    nextPutAll: 'Content-Length: '; nextPutAll: sdp size asString; cr; nl;
                    cr; nl;
                    nextPutAll: sdp.
        ].

        ^ out contents
    ]

    isRequest [
        ^ false
    ]
]