blob: 9148d6c3c5f83101507799490c509034be6f0d63 [file] [log] [blame]
/*
* Copyright (C) 2014 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include "UserMediaPermissionRequestManager.h"
#if ENABLE(MEDIA_STREAM)
#include "WebCoreArgumentCoders.h"
#include "WebFrame.h"
#include "WebPage.h"
#include "WebPageProxyMessages.h"
#include <WebCore/Document.h>
#include <WebCore/Frame.h>
#include <WebCore/FrameLoader.h>
#include <WebCore/SecurityOrigin.h>
using namespace WebCore;
namespace WebKit {
static uint64_t generateRequestID()
{
static uint64_t uniqueRequestID = 1;
return uniqueRequestID++;
}
UserMediaPermissionRequestManager::UserMediaPermissionRequestManager(WebPage& page)
: m_page(page)
{
}
void UserMediaPermissionRequestManager::startRequest(UserMediaRequest& request)
{
Document* document = downcast<Document>(request.scriptExecutionContext());
Frame* frame = document ? document->frame() : nullptr;
if (!frame) {
request.userMediaAccessDenied();
return;
}
uint64_t requestID = generateRequestID();
m_idToRequestMap.add(requestID, &request);
m_requestToIDMap.add(&request, requestID);
WebFrame* webFrame = WebFrame::fromCoreFrame(*frame);
ASSERT(webFrame);
SecurityOrigin* origin = request.securityOrigin();
m_page.send(Messages::WebPageProxy::RequestUserMediaPermissionForFrame(requestID, webFrame->frameID(), origin->databaseIdentifier(), request.requiresAudio(), request.requiresVideo(), request.deviceUIDsVideo(), request.deviceUIDsAudio()));
}
void UserMediaPermissionRequestManager::cancelRequest(UserMediaRequest& request)
{
uint64_t requestID = m_requestToIDMap.take(&request);
if (!requestID)
return;
m_idToRequestMap.remove(requestID);
}
void UserMediaPermissionRequestManager::didReceiveUserMediaPermissionDecision(uint64_t requestID, bool allowed, const String& deviceUIDVideo, const String& deviceUIDAudio)
{
RefPtr<UserMediaRequest> request = m_idToRequestMap.take(requestID);
if (!request)
return;
m_requestToIDMap.remove(request);
if (allowed)
request->userMediaAccessGranted();
else
request->userMediaAccessDenied();
}
} // namespace WebKit
#endif // ENABLE(MEDIA_STREAM)