Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
9d4bc898
Commit
9d4bc898
authored
10 years ago
by
Emmanuel ROHEE
Browse files
Options
Downloads
Patches
Plain Diff
Made uploadContent compatible for sending Blob objects
parent
efe5aa64
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webclient/components/matrix/matrix-service.js
+22
-4
22 additions, 4 deletions
webclient/components/matrix/matrix-service.js
with
22 additions
and
4 deletions
webclient/components/matrix/matrix-service.js
+
22
−
4
View file @
9d4bc898
...
@@ -61,14 +61,22 @@ angular.module('matrixService', [])
...
@@ -61,14 +61,22 @@ angular.module('matrixService', [])
return
doBaseRequest
(
config
.
homeserver
,
method
,
path
,
params
,
data
,
undefined
);
return
doBaseRequest
(
config
.
homeserver
,
method
,
path
,
params
,
data
,
undefined
);
};
};
var
doBaseRequest
=
function
(
baseUrl
,
method
,
path
,
params
,
data
,
headers
)
{
var
doBaseRequest
=
function
(
baseUrl
,
method
,
path
,
params
,
data
,
headers
,
$httpParams
)
{
return
$http
({
var
request
=
{
method
:
method
,
method
:
method
,
url
:
baseUrl
+
path
,
url
:
baseUrl
+
path
,
params
:
params
,
params
:
params
,
data
:
data
,
data
:
data
,
headers
:
headers
headers
:
headers
});
};
// Add additional $http parameters
if
(
$httpParams
)
{
angular
.
extend
(
request
,
$httpParams
);
}
return
$http
(
request
);
};
};
...
@@ -326,7 +334,17 @@ angular.module('matrixService', [])
...
@@ -326,7 +334,17 @@ angular.module('matrixService', [])
var
params
=
{
var
params
=
{
access_token
:
config
.
access_token
access_token
:
config
.
access_token
};
};
return
doBaseRequest
(
config
.
homeserver
,
"
POST
"
,
path
,
params
,
file
,
headers
);
// If the file is actually a Blob object, prevent $http from JSON-stringified it before sending
// (Equivalent to jQuery ajax processData = false)
var
$httpParams
;
if
(
file
instanceof
Blob
)
{
$httpParams
=
{
transformRequest
:
angular
.
identity
};
}
return
doBaseRequest
(
config
.
homeserver
,
"
POST
"
,
path
,
params
,
file
,
headers
,
$httpParams
);
},
},
// start listening on /events
// start listening on /events
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment