This file is indexed.

/usr/share/doc/libcppnetlib-doc/examples/network/twitter/search.cpp is in libcppnetlib-doc 0.11.0-1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//            Copyright (c) Glyn Matthews 2011, 2012.
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)


#include <boost/network/protocol/http/client.hpp>
#include "rapidjson/rapidjson.h"
#include "rapidjson/document.h"
#include <iostream>

// This example uses the Twitter Search API.
//
// https://dev.twitter.com/docs/using-search

int main(int argc, char *argv[]) {
    using namespace boost::network;
    using namespace rapidjson;

    if (argc != 2) {
        std::cout << "Usage: " << argv[0] << " <query>" << std::endl;
        return 1;
    }

    try {
        http::client client;

        uri::uri base_uri("http://search.twitter.com/search.json");

        std::cout << "Searching Twitter for query: " << argv[1] << std::endl;
        uri::uri search;
        search << base_uri << uri::query("q", uri::encoded(argv[1]));
        http::client::request request(search);
        http::client::response response = client.get(request);

        Document d;
        if (!d.Parse<0>(response.body().c_str()).HasParseError()) {
			const Value &results = d["results"];
			for (SizeType i = 0; i < results.Size(); ++i)
			{
				const Value &user = results[i]["from_user_name"];
				const Value &text = results[i]["text"];
				std::cout << "From: " << user.GetString() << std::endl
						  << "  " << text.GetString() << std::endl
						  << std::endl;
            }
        }
    }
    catch (std::exception &e) {
        std::cerr << e.what() << std::endl;
    }

    return 0;
}