summaryrefslogtreecommitdiff
path: root/app/Model/TaskFile.php
blob: 45a3b97f75830b1bbe79bc0737afdbc8e9e0e35b (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
<?php

namespace Kanboard\Model;

/**
 * Task File Model
 *
 * @package  model
 * @author   Frederic Guillot
 */
class TaskFile extends File
{
    /**
     * SQL table name
     *
     * @var string
     */
    const TABLE = 'task_has_files';

    /**
     * SQL foreign key
     *
     * @var string
     */
    const FOREIGN_KEY = 'task_id';

    /**
     * Path prefix
     *
     * @var string
     */
    const PATH_PREFIX = 'tasks';

    /**
     * Events
     *
     * @var string
     */
    const EVENT_CREATE = 'task.file.create';

    /**
     * Handle screenshot upload
     *
     * @access public
     * @param  integer  $task_id      Task id
     * @param  string   $blob         Base64 encoded image
     * @return bool|integer
     */
    public function uploadScreenshot($task_id, $blob)
    {
        $original_filename = e('Screenshot taken %s', $this->helper->dt->datetime(time())).'.png';
        return $this->uploadContent($task_id, $original_filename, $blob);
    }
}