mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
souphttpsrc: Remember if a redirect is permanent or not and store it in the query
This commit is contained in:
parent
d87cc7bacf
commit
3b6c17c2b6
2 changed files with 9 additions and 3 deletions
|
@ -965,8 +965,10 @@ gst_soup_http_src_got_headers_cb (SoupMessage * msg, GstSoupHTTPSrc * src)
|
|||
if (src->automatic_redirect && SOUP_STATUS_IS_REDIRECTION (msg->status_code)) {
|
||||
src->redirection_uri = g_strdup (soup_message_headers_get_one
|
||||
(msg->response_headers, "Location"));
|
||||
GST_DEBUG_OBJECT (src, "%u redirect to \"%s\"", msg->status_code,
|
||||
src->redirection_uri);
|
||||
src->redirection_permanent =
|
||||
(msg->status_code == SOUP_STATUS_MOVED_PERMANENTLY);
|
||||
GST_DEBUG_OBJECT (src, "%u redirect to \"%s\" (permanent %d)",
|
||||
msg->status_code, src->redirection_uri, src->redirection_permanent);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1793,8 +1795,11 @@ gst_soup_http_src_query (GstBaseSrc * bsrc, GstQuery * query)
|
|||
switch (GST_QUERY_TYPE (query)) {
|
||||
case GST_QUERY_URI:
|
||||
gst_query_set_uri (query, src->location);
|
||||
if (src->redirection_uri != NULL)
|
||||
if (src->redirection_uri != NULL) {
|
||||
gst_query_set_uri_redirection (query, src->redirection_uri);
|
||||
gst_query_set_uri_redirection_permanent (query,
|
||||
src->redirection_permanent);
|
||||
}
|
||||
ret = TRUE;
|
||||
break;
|
||||
default:
|
||||
|
|
|
@ -50,6 +50,7 @@ struct _GstSoupHTTPSrc {
|
|||
|
||||
gchar *location; /* Full URI. */
|
||||
gchar *redirection_uri; /* Full URI after redirections. */
|
||||
gboolean redirection_permanent; /* Permanent or temporary redirect? */
|
||||
gchar *user_agent; /* User-Agent HTTP header. */
|
||||
gboolean automatic_redirect; /* Follow redirects. */
|
||||
SoupURI *proxy; /* HTTP proxy URI. */
|
||||
|
|
Loading…
Reference in a new issue