diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-04-13 20:34:01 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-04-13 20:34:01 +0200 |
commit | 189e232fc65ab356eef9997a81a9755d17c41b37 (patch) | |
tree | 7de5f3d622eb955d5dfc381225688c819681cf48 | |
parent | 4397fbcba26037acc2c1323e73e5a54200da7c17 (diff) |
Add nuke_id() command
This can be used to remove an ID and all other IDs referencing the same
hash.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | application/controllers/file.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/application/controllers/file.php b/application/controllers/file.php index 49434699c..f6a37eaf8 100644 --- a/application/controllers/file.php +++ b/application/controllers/file.php @@ -379,6 +379,32 @@ class File extends CI_Controller { closedir($outer_dh); } + function nuke_id() + { + if (!$this->input->is_cli_request()) return; + + $id = $this->uri->segment(3); + + + $file_data = $this->file_mod->get_filedata($id); + + if (empty($file_data)) { + echo "unknown id \"$id\"\n"; + return; + } + + $hash = $file_data["hash"]; + + $this->db->query(" + DELETE FROM files + WHERE hash = ? + ", array($hash)); + + unlink($this->file_mod->file($hash)); + + echo "removed hash \"$hash\"\n"; + } + function update_file_sizes() { if (!$this->input->is_cli_request()) return; |