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
|
<?php
namespace Kanboard\ExternalLink;
use Kanboard\Core\ExternalLink\ExternalLinkProviderInterface;
/**
* Attachment Link Provider
*
* @package externalLink
* @author Frederic Guillot
*/
class AttachmentLinkProvider extends BaseLinkProvider implements ExternalLinkProviderInterface
{
/**
* File extensions that are not attachments
*
* @access protected
* @var array
*/
protected $extensions = array(
'html',
'htm',
'xhtml',
'php',
'jsp',
'do',
'action',
'asp',
'aspx',
'cgi',
);
/**
* Get provider name
*
* @access public
* @return string
*/
public function getName()
{
return t('Attachment');
}
/**
* Get link type
*
* @access public
* @return string
*/
public function getType()
{
return 'attachment';
}
/**
* Get a dictionary of supported dependency types by the provider
*
* @access public
* @return array
*/
public function getDependencies()
{
return array(
'related' => t('Related'),
);
}
/**
* Return true if the provider can parse correctly the user input
*
* @access public
* @return boolean
*/
public function match()
{
if (preg_match('/^https?:\/\/.*\.([^\/]+)$/', $this->userInput, $matches)) {
return $this->isValidExtension($matches[1]);
}
return false;
}
/**
* Get the link found with the properties
*
* @access public
* @return \Kanboard\Core\ExternalLink\ExternalLinkInterface
*/
public function getLink()
{
$link = new AttachmentLink($this->container);
$link->setUrl($this->userInput);
return $link;
}
/**
* Check file extension
*
* @access protected
* @param string $extension
* @return boolean
*/
protected function isValidExtension($extension)
{
$extension = strtolower($extension);
foreach ($this->extensions as $ext) {
if ($extension === $ext) {
return false;
}
}
return true;
}
}
|