Welcome to mirror list, hosted at ThFree Co, Russian Federation.

yandex_api.hpp « partners_api - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ee5325a9a1170202e225ff5d2b03f5abdb5ba67 (plain)
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
#pragma once

#include "partners_api/taxi_base.hpp"

#include <string>

namespace ms
{
class LatLon;
}

namespace taxi
{
namespace yandex
{
extern std::string const kTaxiInfoUrl;
/// Yandex api wrapper based on synchronous http requests.
class RawApi
{
public:
  static bool GetTaxiInfo(ms::LatLon const & from, ms::LatLon const & to, std::string & result,
                          std::string const & url = kTaxiInfoUrl);
};

/// Class which used for making products from http requests results.
class Api : public ApiBase
{
public:
  explicit Api(std::string const & baseUrl = kTaxiInfoUrl) : ApiBase(baseUrl) {}
  // ApiBase overrides:
  /// Requests list of available products from Yandex.
  void GetAvailableProducts(ms::LatLon const & from, ms::LatLon const & to,
                            ProductsCallback const & successFn,
                            ErrorProviderCallback const & errorFn) override;

  /// Returns link which allows you to launch the Yandex app.
  RideRequestLinks GetRideRequestLinks(std::string const & productId, ms::LatLon const & from,
                                       ms::LatLon const & to) const override;
};

void MakeFromJson(std::string const & src, std::vector<taxi::Product> & products);
}  // namespace yandex
}  // namespace taxi