Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
84a5025d
Commit
84a5025d
authored
Oct 08, 2010
by
Alan McNatty
Browse files
First round of changes for mobileupload handler for MaharaDroid
parent
9d51effc
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/artefact/file/mobileupload.php
0 → 100644
View file @
84a5025d
<?php
/**
* Mahara: Electronic portfolio, weblog, resume builder and social networking
* Copyright (C) 2006-2009 Catalyst IT Ltd and others; see:
* http://wiki.mahara.org/Contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package mahara
* @subpackage artefact-file
* @author Catalyst IT Ltd
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL
* @copyright (C) 2006-2009 Catalyst IT Ltd http://catalyst.net.nz
*
*/
define
(
'INTERNAL'
,
1
);
define
(
'PUBLIC'
,
1
);
require
(
dirname
(
dirname
(
dirname
(
__FILE__
)))
.
'/init.php'
);
safe_require
(
'artefact'
,
'file'
);
$protocol
=
strtoupper
(
$_SERVER
[
'SERVER_PROTOCOL'
]);
if
(
$protocol
!=
'HTTP/1.1'
)
{
$protocol
=
'HTTP/1.0'
;
}
$data
=
new
StdClass
;
$USER
=
new
User
();
$USER
->
find_by_mobileuploadtoken
(
param_variable
(
'token'
));
$data
->
owner
=
$USER
->
get
(
'id'
);
// id of owner
$data
->
parent
=
ArtefactTypeFolder
::
get_folder_by_name
(
param_variable
(
'foldername'
),
null
,
$USER
->
get
(
'id'
));
// id of folder you're putting the file into
if
(
$data
->
parent
==
0
)
$data
->
parent
=
null
;
$originalname
=
$_FILES
[
'userfile'
][
'name'
];
$originalname
=
$originalname
?
basename
(
$originalname
)
:
get_string
(
'file'
,
'artefact.file'
);
$data
->
title
=
ArtefactTypeFileBase
::
get_new_file_title
(
$originalname
,
$data
->
parent
,
$data
->
owner
);
try
{
$newid
=
ArtefactTypeFile
::
save_uploaded_file
(
'userfile'
,
$data
);
}
catch
(
QuotaExceededException
$e
)
{
header
(
$protocol
.
' 500 Quota exceeded'
);
exit
;
}
catch
(
UploadException
$e
)
{
header
(
$protocol
.
' 500 Failed to save file'
);
exit
;
}
echo
'foo'
;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment