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
|
<?php
/**
* Part of grauphel
*
* PHP version 5
*
* @category Tools
* @package Grauphel
* @author Christian Weiske <cweiske@cweiske.de>
* @copyright 2014 Christian Weiske
* @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
* @link http://cweiske.de/grauphel.htm
*/
namespace OCA\Grauphel\Controller;
use \OCP\AppFramework\Controller;
use \OCP\AppFramework\Http\TemplateResponse;
use \OCA\Grauphel\Lib\Client;
use \OCA\Grauphel\Lib\TokenStorage;
use \OCA\Grauphel\Lib\Response\ErrorResponse;
/**
* Owncloud frontend: Notes
*
* @category Tools
* @package Grauphel
* @author Christian Weiske <cweiske@cweiske.de>
* @copyright 2014 Christian Weiske
* @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
* @version Release: @package_version@
* @link http://cweiske.de/grauphel.htm
*/
class NotesController extends Controller
{
/**
* constructor of the controller
*
* @param string $appName Name of the app
* @param IRequest $request Instance of the request
*/
public function __construct($appName, \OCP\IRequest $request, $user)
{
parent::__construct($appName, $request);
$this->user = $user;
//default http header: we assume something is broken
header('HTTP/1.0 500 Internal Server Error');
}
/**
* Output a note in tomboy XML format
*
* @link https://wiki.gnome.org/Apps/Tomboy/NoteXmlFormat
*
* @NoAdminRequired
* @NoCSRFRequired
*/
public function xml($guid)
{
$note = $this->getNotes()->load($guid, false);
if ($note === null) {
$res = new ErrorResponse('Note does not exist');
$res->setStatus(\OCP\AppFramework\Http::STATUS_NOT_FOUND);
return $res;
}
$xw = new \XMLWriter();
$xw->openMemory();
$xw->startDocument('1.0', 'utf-8');
$xw->startElementNS(null, 'note', 'http://beatniksoftware.com/tomboy');
$xw->writeAttribute('version', '0.3');
$xw->writeAttribute('xmlns:link', 'http://beatniksoftware.com/tomboy/link');
$xw->writeAttribute('xmlns:size', 'http://beatniksoftware.com/tomboy/size');
$xw->writeElement('title', $note->title);
$xw->startElement('text');
$xw->writeAttribute('xml:space', 'preserve');
$xw->startElement('note-content');
$xw->writeAttribute('version', $note->{'note-content-version'});
$xw->writeRaw($note->{'note-content'});
$xw->endElement();//note-content
$xw->endElement();//text
$xw->writeElement('last-change-date', $note->{'last-change-date'});
$xw->writeElement('last-metadata-change-date', $note->{'last-metadata-change-date'});
$xw->writeElement('create-date', $note->{'create-date'});
$xw->writeElement('cursor-position', 0);
$xw->writeElement('width', 450);
$xw->writeElement('height', 360);
$xw->writeElement('x', 0);
$xw->writeElement('y', 0);
$xw->writeElement('open-on-startup', $note->{'open-on-startup'});
$xw->endElement();//note
return new \OCA\Grauphel\Response\XmlResponse($xw->outputMemory());
}
protected function getNotes()
{
$username = $this->user->getUid();
$notes = new \OCA\Grauphel\Lib\NoteStorage($this->urlGen);
$notes->setUsername($username);
return $notes;
}
}
?>
|