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

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

# coding=utf-8 

# 

# Copyright (C) 2010-2012 Platform Computing 

# 

# This library is free software; you can redistribute it and/or 

# modify it under the terms of the GNU Lesser General Public 

# License as published by the Free Software Foundation; either 

# version 2.1 of the License, or (at your option) any later version. 

# 

# This library 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 

# Lesser General Public License for more details. 

# 

# You should have received a copy of the GNU Lesser General Public 

# License along with this library; if not, write to the Free Software 

# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA 

# 

''' 

Non OCCI specific rendering for HTML. 

 

Created on Jul 15, 2011 

 

@author: tmetsch 

''' 

 

# disabling 'Method is abstract' pylint check (HTML only support simple ops!) 

# pylint: disable=W0223 

 

from occi.core_model import Category 

from occi.core_model import Resource, Link 

from occi.handlers import QUERY_STRING 

from occi.protocol.rendering import Rendering 

 

 

class HTMLRendering(Rendering): 

    ''' 

    A simple HTML website rendering for monitoring the service... 

    ''' 

 

    mime_type = 'text/html' 

 

    css = "body { \ 

            font-family: sans-serif; \ 

            font-size: 0.9em; \ 

            margin: 0; \ 

            padding: 0; \ 

           } \ 

           #header { \ 

            background: #444; \ 

            border-top: 5px solid #73c167; \ 

           }  \ 

           #header ul { \ 

            list-style-type: none; \ 

            list-style-image: none; \ 

            margin: 0; \ 

            padding: 0; \ 

            height: 2em; \ 

           } \ 

           #header li { \ 

            margin: 0.2em 0.5em 0.3em 0.5em; \ 

            font-weight: bold; \ 

            display: inline-block; \ 

           } \ 

           #header li a { \ 

            padding: 0.3em; \ 

            text-decoration: none; \ 

            color: #fff; \ 

           } \ 

           #header li a:hover { \ 

            background: #73c167;\ 

           } \ 

           #breadcrumb { \ 

            background: #efefea; \ 

            padding: 1em; \ 

            border-bottom: 1px solid #444; \ 

           } \ 

           td { \ 

            padding:  0.2em; \ 

            background: #eee; \ 

            color: #444; \ 

           } \ 

           table { \ 

            margin: 0 0 1em 1em; \ 

           } \ 

           table ul { \ 

            margin: 0.3em; \ 

           } \ 

           th { \ 

            background: #73c167; \ 

            padding:  0.2em; \ 

            color: #fff; \ 

           } \ 

           h2 { \ 

            margin: 1em; \ 

            font-size: 1.2em; \ 

            color: #444; \ 

           } \ 

           a { \ 

            color: #73c167; \ 

           } \ 

           a:visited { \ 

            color: #444; \ 

           } \ 

           p {\ 

            margin: 1em; \ 

           } \ 

           form {\ 

            margin: 1em; \ 

           } \ 

           #entity { \ 

            margin: 1em; \ 

           }" 

 

    def __init__(self, registry, css=None): 

        ''' 

        Constructor for HTML rendering. Can be used to use other CSS. 

 

        registry -- Registry used in this service. 

        css -- If provided this CSS is used. 

        ''' 

        Rendering.__init__(self, registry) 

        if css is not None: 

            self.css = css 

 

    def from_entity(self, entity): 

        tmp = self._from_entity_head_html(entity) 

 

        if 'occi.core.id' not in entity.attributes: 

            entity.attributes['occi.core.id'] = entity.identifier 

        if isinstance(entity, Resource): 

            if len(entity.links) > 0: 

                tmp += '\n\t\t\t<h2>Links</h2><table>' 

                tmp += '<tr><th>Kind</th><th>Link</th><th>Target</th></tr>' 

                for item in entity.links: 

                    tmp += '<tr><td>' + item.kind.term + '</td>' 

                    tmp += '<td><a href="' + item.identifier + '">' 

                    tmp += item.identifier + '</a></td>' 

                    # FUTURE_IMPROVEMENT: string links 

                    tmp += '<td><a href="' + item.target.identifier + '">' 

                    tmp += item.target.identifier + '</a></td>' 

                    tmp += '</tr>' 

                tmp += '</table>\n' 

 

        elif isinstance(entity, Link): 

            tmp += '\n\t\t\t<h2>Source &amp; Target</h2><ul>' 

            tmp += '<li><strong>Source: </strong>' 

            tmp += '<a href="' + entity.source.identifier + '">' 

            tmp += entity.source.identifier + '</a></li>' 

            # FUTURE_IMPROVEMENT: string links 

            tmp += '<li><strong>Target: </strong>' 

            tmp += '<a href="' + entity.target.identifier + '">' 

            tmp += entity.target.identifier + '</a></li></ul>\n' 

 

        if len(entity.attributes.keys()) > 0: 

            tmp += '\n\t\t\t<h2>Attributes</h2><table>' 

            for item in entity.attributes.keys(): 

                tmp += '<tr><th>' + item + '</th><td>' 

                tmp += str(entity.attributes[item]) + '</td></tr>' 

            tmp += '</table>\n' 

 

        if len(entity.actions) > 0: 

            tmp += '\n\t\t\t<h2>Actions</h2>' 

            for action in entity.actions: 

                tmp += '<FORM action="' + entity.identifier + '?action=' 

                tmp += str(action.term) + '?scheme=' + str(action.scheme) 

                tmp += '" method="post" />' '<INPUT type="submit" value="' 

                tmp += str(action.term) + '"/></FORM>' 

            tmp += '\n' 

 

        tmp += '\n\t\t</div>\n\t</body>\n</html>' 

 

        return {'Content-Type': self.mime_type}, tmp 

 

    def _from_entity_head_html(self, entity): 

        ''' 

        Private helper function which creates the first part of the HTML. 

 

        entity -- The entity to render. 

        ''' 

        tmp = '<html>\n\t<head>\n' 

        tmp += '\t\t<title>Resource: ' + entity.identifier + '</title>\n' 

        tmp += '\t\t<style type="text/css"><!-- ' + self.css + ' --></style>\n' 

        tmp += '\t</head>\n\t<body>\n' 

 

        # header 

        tmp += '\t\t<div id="header"><ul><li><a href="/">Home</a></li>' 

        tmp += '<li><a href="/-/">Query Interface</a></li></ul></div>\n' 

 

        # breadcrumb 

        tmp += '\t\t<div id="breadcrumb"><a href="/">&raquo;</a> /' 

        path = '/' 

        for item in entity.identifier.split('/')[1:-1]: 

            path += item + '/' 

            tmp += ' <a href="' + path + '">' + item + "</a> / " 

        tmp += '<a href="' + entity.identifier + '">' 

        tmp += entity.identifier.split('/')[-1] + '</a>' 

        tmp += '</div>\n' 

 

        # body 

        tmp += '\t\t<div id="entity">\n\t\t\t<h2>Kind</h2><ul><li>' 

        tmp += '<a href="/-/#' + entity.kind.scheme + '-' 

        tmp += entity.kind.term + '">' + str(entity.kind) + '</a></li></ul>\n' 

        if len(entity.mixins) > 0: 

            tmp += '\t\t\t<h2>Mixins</h2><ul>' 

            for item in entity.mixins: 

                tmp += '<li><a href="/-/#' + item.scheme + '-' 

                tmp += item.term + '">' + str(item) + '</a></li>' 

            tmp += '</ul>\n' 

 

        if hasattr(entity, 'summary') and entity.summary != '': 

            tmp += '\t\t\t<h2>Summary</h2><p>' + str(entity.summary) + '</p>\n' 

        if entity.title != '': 

            tmp += '\t\t\t<h2>Title</h2><p>' + str(entity.title) + '</p>\n' 

        return tmp 

 

    def from_entities(self, entities, key): 

        tmp = '<html>\n\t<head>\n' 

        tmp += '\t\t<title>Resource listing: ' + key + '</title>\n' 

        tmp += '\t\t<style type="text/css"><!-- ' + self.css + ' --></style>\n' 

        tmp += '\t</head>\n' 

        tmp += '\t<body>\n' 

 

        # header 

        tmp += '\t\t<div id="header"><ul><li><a href="/">Home</a></li>' 

        tmp += '<li><a href="/-/">Query Interface</a></li></ul></div>\n' 

 

        # breadcrumb 

        tmp += '\t\t<div id="breadcrumb"><a href="/">&raquo;</a> /' 

        path = '/' 

        for item in key.split('/')[1:-1]: 

            path += item + '/' 

            tmp += ' <a href="' + path + '">' + item + "</a> /" 

        tmp += '</div>\n' 

 

        # body 

        tmp += '\t\t<div id="entity"><ul>\n' 

        if not len(entities): 

            tmp += '\t\t\t<li>No resources found</li>\n' 

        for item in entities: 

            tmp += '\t\t\t<li><a href="' + item.identifier + '">' 

            tmp += item.identifier + '</a></li>\n' 

        tmp += '\t\t</ul></div>\n' 

        tmp += '\t</body>\n</html>' 

        return {'Content-Type': self.mime_type}, tmp 

 

    def from_categories(self, categories): 

        tmp = '<html>\n\t<head>\n' 

        tmp += '\t\t<title>Query Interface</title>\n' 

        tmp += '\t\t<style type="text/css"><!-- ' + self.css + ' --></style>\n' 

        tmp += '\t</head>\n' 

        tmp += '\t<body>\n' 

 

        # header 

        tmp += '\t\t<div id="header"><ul><li><a href="/">Home</a></li>' 

        tmp += '<li><a href="/-/">Query Interface</a></li></ul></div>\n' 

 

        # breadcrumb 

        tmp += '\t\t<div id="breadcrumb"><a href="/">&raquo;</a> /</div>\n' 

 

        # body 

        tmp += '\t\t<div id="entity">\n' 

        for cat in categories: 

            tmp += '\t\t<h2><a name="' + cat.scheme + '-' + cat.term + '">' 

            tmp += repr(cat).upper() + ': ' + cat.term + '</a></h2>\n' 

            tmp += '\t\t<table>\n' 

            tmp += '\t\t\t<tr><th>Scheme</th><td>' + cat.scheme 

            tmp += '</td></tr>\n' 

            if hasattr(cat, 'title') and cat.title is not '': 

                tmp += '\t\t\t<tr><th>Title</th><td>' + cat.title 

                tmp += '</td></tr>\n' 

            if hasattr(cat, 'related') and len(cat.related) > 0: 

                rel_list = '<ul>' 

                for item in cat.related: 

                    rel_list += '<li>' + str(item) + '</li>' 

                rel_list += '</ul>' 

                tmp += '\t\t\t<tr><th>Related</th><td>' + rel_list 

                tmp += '</td></tr>\n' 

            if hasattr(cat, 'location') and cat.location is not None: 

                tmp += '\t\t\t<tr><th>Location</th><td><a href="' 

                tmp += cat.location + '">' + cat.location + '</a></td></tr>\n' 

            if hasattr(cat, 'actions') and len(cat.actions) > 0: 

                acts = '<ul>' 

                for item in cat.actions: 

                    acts += '<li>' + str(item) + '</li>' 

                acts += '</ul>' 

                tmp += '\t\t\t<tr><th>Actions</th><td>' + acts + '</td></tr>\n' 

            if hasattr(cat, 'attributes') and len(cat.attributes) > 0: 

                attrs = '<ul>' 

                for item in cat.attributes: 

                    if cat.attributes[item] == 'required': 

                        attrs += '<li>' + item 

                        attrs += ' (<strong>required</strong>)</li>' 

                    elif cat.attributes[item] == 'immutable': 

                        attrs += '<li>' + item 

                        attrs += ' (<strong>immutable</strong>)</li>' 

                    else: 

                        attrs += '<li>' + item + '</li>' 

                attrs += '</ul>' 

                tmp += '\t\t\t<tr><th>Attributes</th><td>' + attrs 

                tmp += '</td></tr>\n' 

            tmp += '\t\t</table>\n' 

 

        tmp += '\t\t</div>\n\t</body>\n</html>' 

        return {'Content-Type': self.mime_type}, tmp 

 

    def to_action(self, headers, body, extras): 

        cat_str = headers.get(QUERY_STRING) 

        scheme_index = cat_str.find('scheme=') 

        if scheme_index != -1: 

            scheme = cat_str[scheme_index + 7:] 

        else: 

            raise AttributeError('Unable to find the scheme. Broken request?.') 

 

        index = cat_str.find('action=') 

        if index != -1: 

            term = cat_str[index + 7:scheme_index - 1] 

        else: 

            raise AttributeError('Unable to find the term. Broken request?.') 

 

        tmp = Category(scheme + '#', term, '', {}, '') 

        cats = self.registry.get_categories(extras) 

        if tmp in cats: 

            for item in self.registry.get_categories(extras): 

                if tmp == item: 

                    del tmp 

                    return item, {} 

        else: 

            raise AttributeError('Action is not defined. Check the QI.')