summaryrefslogtreecommitdiffstats
path: root/sandbox/slaws/httpserver.php/htdocs/AlertDisplay.php
blob: 94b5352818a8994317d57de834cccf770ac60ed8 (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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
<!--
   Licensed to the Apache Software Foundation (ASF) under one
   or more contributor license agreements.  See the NOTICE file
   distributed with this work for additional information
   regarding copyright ownership.  The ASF licenses this file
   to you under the Apache License, Version 2.0 (the
   "License"); you may not use this file except in compliance
   with the License.  You may obtain a copy of the License at
   
     http://www.apache.org/licenses/LICENSE-2.0
     
   Unless required by applicable law or agreed to in writing,
   software distributed under the License is distributed on an
   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
   KIND, either express or implied.  See the License for the
   specific language governing permissions and limitations
   under the License.
-->
<?php
include 'SCA/SCA.php';

/**
 * @service
 * @binding.restrpc
 * @types http://tuscany.apache.org/sca/samples/aggregator/types ./Alerts.xsd
 */
class AlertDisplay
{
    /**
     * @reference
     * @binding.soap ./Alerts.wsdl
     */
    public $alert_service;

    /**
     * @reference
     * @binding.soap ./AlertsSources.wsdl
     */
    public $alert_sources_service;
	
    /**
      * @return string
      */  
    public function getAlertsHTMLTable()
    {  
        $xmldas        = SDO_DAS_XML::create("./Alerts.xsd");
        $doc           = $xmldas->loadFile("./Cached_Alerts.xml");
        $cached_alerts = $doc->getRootDataObject();      
        
        // Use the alertService reference
        $request = $this->alert_service->createDataObject("http://tuscany.apache.org/sca/samples/aggregator/service",
                                                          "getAllNewAlerts");
        $request->parm = "AString";
        $new_alerts = $this->alert_service->getAllNewAlerts($request);
   
        foreach($new_alerts->parm->Alert as $alert){
            $new_alert = $cached_alerts->createDataObject('Alert');
            $new_alert->Title    = $alert->Title;
            $new_alert->Summary  = $alert->Summary;
            $new_alert->Address  = $alert->Address;
            $new_alert->Date     = $alert->Date; 
            $new_alert->SourceId = $alert->SourceId;  
            $new_alert->Unread   = true;         
        }
               
        $return_table = "<TABLE border=\'0\'>";  
        $alert_id_number = 0;
        foreach($cached_alerts->Alert as $alert){
            $alert->Id = "alert_" . $alert_id_number;  
            $title = substr($alert->Title,0,80);
            $summary = substr($alert->Summary,0,40);
            $unread_string = $alert->Unread ? "unread_title" : "read_title";
            $return_row = <<<ALERTROW
<TR class="source_$alert->SourceId clickable" onclick="displayAlert('$alert->Address', '')">
  <TD>
    <SPAN id="$alert->Id" class="$unread_string">$title</SPAN>
    <SPAN class="summary"> - $summary ...</SPAN>
  </TD>
  <TD>
    $alert->Date
  </TD>
</TR>
ALERTROW;
           $return_table     = $return_table . $return_row;
           $alert_id_number += 1;
        }   
        $return_table = $return_table . "</TABLE>";
        
        // as php is one shot we have to save away the alerts we want to cache
        $xmldas->saveFile($doc, "./Cached_Alerts.xml");
                
        return $return_table;
    }
    
    /**
      * @param string $alert_id
      * @return string
      */      
    public function readAlert($alert_id)
    {
        $xmldas        = SDO_DAS_XML::create("./Alerter.xsd");
        $doc           = $xmldas->loadFile("./Cached_Alerts.xml");
        $cached_alerts = $doc->getRootDataObject();
        
        $return_summary = "";

        foreach($cached_alerts->alert as $alert){         
            if (strcmp($alert->Id,$alert_Id) == 0){
                SCA::$logger->log("Match");
                $alert->Unread = false;
                $return_summary = "<PRE>" . $alert->Summary . "</PRE>";
            }      
        }
        
        // as php is one shot we have to save away the alerts we want to cache
        $xmldas->saveFile($doc, "./Cached_Alerts.xml");
                
        return $return_summary;
    }

    /**
      * @return string
      */ 
    public function getAlertSourcesHTMLTable()
    {
        $request = $this->alert_sources_service->createDataObject("http://tuscany.apache.org/sca/samples/aggregator/sources",
                                                          "getAlertSources");
        $request->parm = "AString";
        $alert_sources = $this->alert_sources_service->getAlertSources($request);
       
        $return_table = "<TABLE border='0'>\n";        

        $no_of_sources = 0;

        foreach ($alert_sources->parm->Source as $alert_source){
            $source_id = $alert_source->Id;
            $return_row = <<<SOURCEROW
<TR CLASS="source_$source_id" >
  <TD CLASS="clickable" ONCLICK="displayAlert('$alert_source->Address', '')">
    <IMG SRC="rss.png"/>&nbsp;&nbsp;$alert_source->Name
  </TD>
  <TD CLASS="clickable link" ONCLICK="showEditSource('$source_id')">Edit</TD>
  <TD CLASS="clickable link" ONCLICK="deleteSource('$source_id')">Delete</TD>
</TR>
<TR ID="edit_source_$source_id" CLASS="hidden source_$source_id">
  <TD COLSPAN="3">
    <TABLE CLASS="sourceDetailsTable">
      <TR>
        <TD>Source name:</TD>
        <TD>
          <INPUT ID="source_{$source_id}_name" TYPE="TEXT" SIZE="50" VALUE="$alert_source->Name"/>
        </TD>
      </TR>
      <TR>
        <TD>Source address:</TD>
        <TD>
          <INPUT ID="source_{$source_id}_address" TYPE="TEXT" SIZE="50" VALUE="$alert_source->Address"/>
        </TD>
      </TR>
      <TR>
        <TD>
          <INPUT ID="source_{$source_id}_type" TYPE="HIDDEN" VALUE="$source_id"/>
          <INPUT TYPE="BUTTON" VALUE="Update" ONCLICK="updateSource('$source_id')"/>
          <INPUT TYPE="BUTTON" VALUE="Cancel" ONCLICK="hideEditSource('$source_id')"/>
        </TD>
      </TR>
    </TABLE>
  </TD>
</TR>
SOURCEROW;
            $return_table = $return_table . $return_row;  
            $no_of_sources = $no_of_sources + 1;      
        }

        $source_id = $no_of_sources + 1;

        $return_row = <<<ADDROW
<TR CLASS="source_$source_id">
  <TD COLSPAN="4" CLASS="clickable link" ONCLICK="showAddNewSource('$source_id')">Add new Alert Source</TD>
</TR>
<TR ID="add_source_$source_id" CLASS="hidden source_$source_id">
  <TD COLSPAN="4">
    <TABLE CLASS="sourceDetailsTable">
      <TR>
        <TD>Source name:</TD>
        <TD>
          <INPUT ID="source_{$source_id}_name" TYPE="TEXT" SIZE="50">
        </TD>
      </TR>
      <TR>
        <TD>Source address:</TD>
        <TD>
          <INPUT ID="source_{$source_id}_address" TYPE="TEXT" SIZE="50">
        </TD>
      </TR>
      <TR>
        <TD>Source type:</TD>
        <TD>
          <SELECT ID="source_{$source_id}_type" ONCHANGE="showSourceType('$source_id')">
            <OPTION value="rss" selected="selected">RSS/Atom feed</OPTION>"
          </SELECT>
        </TD>
      </TR>
      <TR ID="add_rss_source">
        <TD COLSPAN="2">
          <TABLE CLASS="sourceDetailsTable">
            <TR>
              <TD>Feed address:</TD>
              <TD>
                 <INPUT ID="source_{$source_id}_feedAddress" TYPE="TEXT" SIZE="50"/>
              </TD>
            </TR>
          </TABLE>
        </TD>
      </TR>
      <TR>
        <TD>
          <INPUT TYPE="BUTTON" VALUE="Add" ONCLICK="addSource('$source_id')">
          <INPUT TYPE="BUTTON" VALUE="Cancel" ONCLICK="hideAddNewSource('$source_id')">
        </TD>
      </TR>
    </TABLE>
  </TD>
</TR>
ADDROW;

        $return_table = $return_table . $return_row;
        $return_table = $return_table . "</TABLE>\n";
        return $return_table;
    }

    /**
      * @param integer $source_id
      * @return string
      */ 
    public function deleteAlertSource($source_id){ 
        $this->alert_sources_service->removeAlertSource($source_id);
    }
        
    /**
      * @param SingleSourceType $alert_source http://tuscany.apache.org/sca/samples/aggregator/types
      */ 
    public function addAlertSource($alert_source){    
        $request = $this->alert_sources_service->createDataObject("http://tuscany.apache.org/sca/samples/aggregator/sources",
                                                                   "addAlertSource");
        $source = $request->createDataObject("parm");

        $source->Name    = $alert_source->Name;
        $source->Address = $alert_source->Address;
        $source->Id      = $alert_source->Id;
        $source->Type    = $alert_source->Type;        

        $this->alert_sources_service->addAlertSource($request);
    }

    /**
      * @param SourceType $alert_source http://tuscany.apache.org/sca/samples/aggregator/types
      */ 
    public function updateAlertSource($alert_source){ 
        $this->alert_sources_service->updateAlertSource($alert_source);
    }
}

/* Some debugging lines
ob_start();
print_r( $new_alerts );
$debug = ob_get_contents();
ob_end_clean();
SCA::$logger->log($debug);
*/
?>