summaryrefslogtreecommitdiffstats
path: root/system/application/models/file_mod.php
blob: 96415bc2f775a0c092b9905ea439633358509670 (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
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
<?php
/*
 * Copyright 2009-2010 Florian "Bluewind" Pritz <bluewind@server-speed.net>
 *
 * Licensed under GPLv3
 * (see COPYING for full license text)
 *
 */

class File_mod extends Model {

    function __construct()
    {
        parent::Model();
    }

    function new_id()
    {
      $id = $this->random_id(3,6);

      if ($this->id_exists($id)) {
        return $this->new_id();
      } else {
        return $id;
      }
    }

    function id_exists($id)
    {
      $sql = '
        SELECT id
        FROM `files`
        WHERE `id` = ?';
      $query = $this->db->query($sql, array($id));

      if ($query->num_rows() == 1) {
        return true;
      } else {
        return false;
      }
    }

    function get_filedata($id)
    {
      $sql = '
        SELECT hash,filename
        FROM `files`
        WHERE `id` = ?';
      $query = $this->db->query($sql, array($id));

      if ($query->num_rows() == 1) {
        $return = $query->result_array();
        return $return[0];
      } else {
        return false;
      }
    }

    function folder($hash) {
        return $this->config->item('upload_path').'/'.substr($hash, 0, 3);
    }

    function hash_password($password)
    {
    // TODO: move salt to config
      return sha1('w9yFMeU6ITrkrPBlRJfA'.$password);
    }

    private function unused_file($hash)
    {
      $sql = '
        SELECT id
        FROM `files`
        WHERE `hash` = ?';
        $query = $this->db->query($sql, array($hash));

      if ($query->num_rows() == 0) {
        return true;
      } else {
        return false;
      }
    }

    function delete_id($id, $password)
    {
      $filedata = $this->get_filedata($id);
      $password = $this->hash_password($password);

      $sql = '
        DELETE
        FROM `files`
        WHERE `id` = ?
        AND password = ?
        LIMIT 1';
      $query = $this->db->query($sql, array($id, $password));

      if($this->unused_file($filedata['hash'])) {
        unlink($this->config->item('upload_path').'/'.substr($filedata['hash'], 0, 3).'/'.$filedata['hash']);
        // TODO: remove empty folders
      }
    }

    private function random_id($min_length, $max_length)
    {
      $random = '';
      $char_list = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
      $char_list .= "abcdefghijklmnopqrstuvwxyz";
      $char_list .= "1234567890";

      for($i = 0; $i < $max_length; $i++) {
        if (strlen($random) >= $min_length) {
          if (rand()%2 == 1) {
            break;
          }
        }
        $random .= substr($char_list,(rand()%(strlen($char_list))), 1);
      }
      return $random;
    }

    function mime2extension($type)
    {
      $typearray = array(
      'text/plain' => 'txt',
      'text/x-python' => 'py',
      'text/x-csrc' => 'c',
      'text/x-chdr' => 'h',
      'text/x-c++hdr' => 'h',
      'text/x-c++src' => 'cpp',
      'text/x-patch' => 'diff',
      'text/x-lua' => 'lua',
      'text/x-haskell' => 'hs',
      'text/x-literate-haskell' => 'hs',
      'text/x-subviewer' => 'sh',
      #'text/x-makefile' => 'make',
      #'text/x-log' => 'log',
      'text/html' => 'html',
      'text/css' => 'css',
      #'image/svg+xml' => 'xml',
      'application/x-perl' => 'pl',
      'application/xml' => 'xml',
      'application/javascript' => 'js',
      'application/x-desktop' => 'txt',
      'application/x-m4' => 'txt',
      'application/x-awk' => 'awk',
      'application/x-java' => 'java',
      'application/x-php' => 'php',
      'application/x-ruby' => 'rb',
      'application/x-shellscript' => 'sh',
      'application/x-x509-ca-cert' => 'txt',
      'application/mbox' => 'txt'
      );
      if (array_key_exists($type, $typearray)) return $typearray[$type];

      if (strpos($type, 'text/') === 0) return 'txt';

      # default
      return false;
    }
    
}

/* End of file file_mod.php */
/* Location: ./system/application/models/file_mod.php */