]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tests/utils/ReferenceLinkDB.php
Merge pull request #939 from ArthurHoaro/hotfix/firefox-social-title
[github/shaarli/Shaarli.git] / tests / utils / ReferenceLinkDB.php
CommitLineData
ca74886f
V
1<?php
2/**
3 * Populates a reference datastore to test LinkDB
4 */
5class ReferenceLinkDB
6{
7d86f40b 7 public static $NB_LINKS_TOTAL = 9;
89baf23d 8
07b6fa75
V
9 private $_links = array();
10 private $_publicCount = 0;
11 private $_privateCount = 0;
ca74886f
V
12
13 /**
14 * Populates the test DB with reference data
15 */
735ed4a9 16 public function __construct()
ca74886f 17 {
89baf23d 18 $this->addLink(
c3dfd899 19 41,
89baf23d
A
20 'Link title: @website',
21 '?WDWyig',
9ccca401 22 'Stallman has a beard and is part of the Free Software Foundation (or not). Seriously, read this. #hashtag',
89baf23d 23 0,
d592daea 24 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20150310_114651'),
c3dfd899
A
25 'sTuff',
26 null,
27 'WDWyig'
89baf23d
A
28 );
29
ca74886f 30 $this->addLink(
c3dfd899
A
31 42,
32 'Note: I have a big ID but an old date',
33 '?WDWyig',
34 'Used to test links reordering.',
35 0,
d592daea 36 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20100310_101010'),
c3dfd899
A
37 'ut'
38 );
39
7d86f40b
A
40 $this->addLink(
41 9,
42 'PSR-2: Coding Style Guide',
43 'http://www.php-fig.org/psr/psr-2/',
44 'This guide extends and expands on PSR-1, the basic coding standard.',
45 0,
46 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20121206_152312'),
47 ''
48 );
49
c3dfd899
A
50 $this->addLink(
51 8,
522b278b 52 'Free as in Freedom 2.0 @website',
ca74886f 53 'https://static.fsf.org/nosvn/faif-2.0.pdf',
9ccca401 54 'Richard Stallman and the Free Software Revolution. Read this. #hashtag',
ca74886f 55 0,
d592daea 56 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20150310_114633'),
c6d876bb 57 'free gnu software stallman -exclude stuff hashtag',
d592daea 58 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20160803_093033')
ca74886f
V
59 );
60
61 $this->addLink(
c3dfd899 62 7,
ca74886f
V
63 'MediaGoblin',
64 'http://mediagoblin.org/',
9ccca401 65 'A free software media publishing platform #hashtagOther',
ca74886f 66 0,
d592daea 67 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20130614_184135'),
c3dfd899 68 'gnu media web .hidden hashtag',
68016e37 69 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20130615_184230'),
c3dfd899 70 'IuWvgA'
ca74886f
V
71 );
72
73 $this->addLink(
c3dfd899 74 6,
ca74886f
V
75 'w3c-markup-validator',
76 'https://dvcs.w3.org/hg/markup-validator/summary',
9ccca401 77 'Mercurial repository for the W3C Validator #private',
ca74886f 78 1,
d592daea 79 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20141125_084734'),
ca74886f
V
80 'css html w3c web Mercurial'
81 );
82
83 $this->addLink(
c3dfd899 84 4,
ca74886f
V
85 'UserFriendly - Web Designer',
86 'http://ars.userfriendly.org/cartoons/?id=20121206',
9ccca401 87 'Naming conventions... #private',
ca74886f 88 0,
d592daea 89 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20121206_142300'),
ca74886f
V
90 'dev cartoon web'
91 );
92
93 $this->addLink(
c3dfd899 94 1,
ca74886f
V
95 'UserFriendly - Samba',
96 'http://ars.userfriendly.org/cartoons/?id=20010306',
97 'Tropical printing',
98 0,
d592daea 99 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20121206_172539'),
ca74886f
V
100 'samba cartoon web'
101 );
102
103 $this->addLink(
c3dfd899 104 0,
ca74886f
V
105 'Geek and Poke',
106 'http://geek-and-poke.com/',
107 '',
108 1,
d592daea 109 DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20121206_182539'),
9866b408 110 'dev cartoon tag1 tag2 tag3 tag4 '
ca74886f
V
111 );
112 }
113
114 /**
115 * Adds a new link
116 */
c3dfd899 117 protected function addLink($id, $title, $url, $description, $private, $date, $tags, $updated = '', $shorturl = '')
ca74886f
V
118 {
119 $link = array(
c3dfd899 120 'id' => $id,
ca74886f
V
121 'title' => $title,
122 'url' => $url,
123 'description' => $description,
124 'private' => $private,
ca74886f 125 'tags' => $tags,
c3dfd899 126 'created' => $date,
c6d876bb 127 'updated' => $updated,
d592daea 128 'shorturl' => $shorturl ? $shorturl : smallHash($date->format(LinkDB::LINK_DATE_FORMAT) . $id),
ca74886f 129 );
c3dfd899 130 $this->_links[$id] = $link;
ca74886f
V
131
132 if ($private) {
07b6fa75 133 $this->_privateCount++;
ca74886f
V
134 return;
135 }
07b6fa75 136 $this->_publicCount++;
ca74886f
V
137 }
138
139 /**
140 * Writes data to the datastore
141 */
9c8752a2 142 public function write($filename)
ca74886f
V
143 {
144 file_put_contents(
145 $filename,
07b6fa75 146 '<?php /* '.base64_encode(gzdeflate(serialize($this->_links))).' */ ?>'
ca74886f
V
147 );
148 }
149
150 /**
151 * Returns the number of links in the reference data
152 */
153 public function countLinks()
154 {
07b6fa75 155 return $this->_publicCount + $this->_privateCount;
ca74886f
V
156 }
157
158 /**
159 * Returns the number of public links in the reference data
160 */
161 public function countPublicLinks()
162 {
07b6fa75 163 return $this->_publicCount;
ca74886f
V
164 }
165
166 /**
167 * Returns the number of private links in the reference data
168 */
169 public function countPrivateLinks()
170 {
07b6fa75 171 return $this->_privateCount;
ca74886f 172 }
822bffce 173
7d86f40b
A
174 /**
175 * Returns the number of links without tag
176 */
177 public function countUntaggedLinks()
178 {
179 $cpt = 0;
180 foreach ($this->_links as $link) {
181 if (empty($link['tags'])) {
182 ++$cpt;
183 }
184 }
185 return $cpt;
186 }
187
822bffce
A
188 public function getLinks()
189 {
190 return $this->_links;
191 }
c3dfd899
A
192
193 /**
194 * Setter to override link creation.
195 *
196 * @param array $links List of links.
197 */
198 public function setLinks($links)
199 {
200 $this->_links = $links;
201 }
ca74886f 202}