~suaweb/nginx/nginx-recipe

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/net/instaweb/http/public/ua_sensitive_test_fetcher.h

  • Committer: Frans Elliott
  • Date: 2015-06-12 21:15:13 UTC
  • Revision ID: mastergeek.elliott@gmail.com-20150612211513-un4vguj32deibvb0
Added the actual pagespeed library to the ngx_pagespeed module dir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Google Inc.
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 *
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
 
 
17
// Author: morlovich@google.com (Maksim Orlovich)
 
18
//
 
19
// Contains UserAgentSensitiveTestFetcher, which appends the UA string as a
 
20
// query param before delegating to another fetcher. Meant for use in
 
21
// unit tests.
 
22
 
 
23
#ifndef NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_
 
24
#define NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_
 
25
 
 
26
#include "net/instaweb/http/public/url_async_fetcher.h"
 
27
#include "pagespeed/kernel/base/basictypes.h"
 
28
#include "pagespeed/kernel/base/string.h"
 
29
 
 
30
namespace net_instaweb {
 
31
 
 
32
class AsyncFetch;
 
33
class MessageHandler;
 
34
 
 
35
// A helper fetcher that adds in UA to the URL, so we can use
 
36
// MockUrlAsyncFetcher w/UA-sensitive things. It also enforces the
 
37
// domain whitelist.
 
38
class UserAgentSensitiveTestFetcher : public UrlAsyncFetcher {
 
39
 public:
 
40
  explicit UserAgentSensitiveTestFetcher(UrlAsyncFetcher* base_fetcher);
 
41
  virtual void Fetch(const GoogleString& url,
 
42
                     MessageHandler* message_handler,
 
43
                     AsyncFetch* fetch);
 
44
 
 
45
  virtual bool SupportsHttps() const;
 
46
 
 
47
 private:
 
48
  UrlAsyncFetcher* base_fetcher_;
 
49
 
 
50
  DISALLOW_COPY_AND_ASSIGN(UserAgentSensitiveTestFetcher);
 
51
};
 
52
 
 
53
}  // namespace net_instaweb
 
54
 
 
55
#endif  // NET_INSTAWEB_HTTP_PUBLIC_UA_SENSITIVE_TEST_FETCHER_H_