summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nelsonken/gomf/up.php
diff options
context:
space:
mode:
authorWim <wim@42.be>2019-02-10 17:00:11 +0100
committerWim <wim@42.be>2019-02-15 18:19:34 +0100
commit6ebd5cbbd8a941e0bc5f99f0d8e99cfd1d8ac0d7 (patch)
tree47070e58e7802afd80fce53f0048a87a014a7c0d /vendor/github.com/nelsonken/gomf/up.php
parent2cfd880cdb0df29771bf8f31df8d990ab897889d (diff)
downloadmatterbridge-msglm-6ebd5cbbd8a941e0bc5f99f0d8e99cfd1d8ac0d7.tar.gz
matterbridge-msglm-6ebd5cbbd8a941e0bc5f99f0d8e99cfd1d8ac0d7.tar.bz2
matterbridge-msglm-6ebd5cbbd8a941e0bc5f99f0d8e99cfd1d8ac0d7.zip
Refactor and update RocketChat bridge
* Add support for editing/deleting messages * Add support for uploading files * Add support for avatars * Use the Rocket.Chat.Go.SDK * Use the rest and streaming api
Diffstat (limited to 'vendor/github.com/nelsonken/gomf/up.php')
-rw-r--r--vendor/github.com/nelsonken/gomf/up.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/nelsonken/gomf/up.php b/vendor/github.com/nelsonken/gomf/up.php
new file mode 100644
index 00000000..e56e5bbb
--- /dev/null
+++ b/vendor/github.com/nelsonken/gomf/up.php
@@ -0,0 +1,33 @@
+<?php
+/**
+ *
+ * PHP UPLOAD DEMO for gomf test
+ * USAGE:
+ * php -S 127.0.0.1:8080 -t ./
+ *
+ */
+
+print_r($_FILES);
+
+if ($_FILES["picture"]["error"] > 0) {
+ echo "Return Code: " . $_FILES["picture"]["error"] . "\n";
+} else {
+ echo "Upload: " . $_FILES["picture"]["name"] . "\n";
+ echo "Type: " . $_FILES["picture"]["type"] . "\n";
+ echo "Size: " . ($_FILES["picture"]["size"] / 1024) . " Kb\n";
+ echo "Temp file: " . $_FILES["picture"]["tmp_name"] . "\n>";
+
+ if (file_exists($_FILES["picture"]["name"]))
+ {
+ echo $_FILES["picture"]["name"] . " already exists. \n";
+ }
+ else
+ {
+ move_uploaded_file($_FILES["picture"]["tmp_name"], $_FILES["picture"]["name"]);
+ echo "Stored in: " . $_FILES["picture"]["name"] . "\n";
+ }
+}
+
+
+
+