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

uber_api.hpp « partners_api - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34cf270fabeec1cfb0e0480c9d5eab7de1cc321e (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#pragma once

#include "std/function.hpp"
#include "std/mutex.hpp"
#include "std/shared_ptr.hpp"
#include "std/string.hpp"
#include "std/unique_ptr.hpp"
#include "std/vector.hpp"

namespace ms
{
class LatLon;
}

namespace downloader
{
class HttpRequest;
}

namespace uber
{
// Uber api wrapper based on synchronous http requests.
class RawApi
{
public:
  /// Returns true when http request was executed successfully and response copied into @result,
  /// otherwise returns false. The response contains the display name and other details about each
  /// product, and lists the products in the proper display order. This endpoint does not reflect
  /// real-time availability of the products.
  static bool GetProducts(ms::LatLon const & pos, string & result);
  /// Returns true when http request was executed successfully and response copied into @result,
  /// otherwise returns false. The response contains ETAs for all products currently available
  /// at a given location, with the ETA for each product expressed as integers in seconds. If a
  /// product returned from GetProducts is not returned from this endpoint for a given
  /// latitude/longitude pair then there are currently none of that product available to request.
  /// Call this endpoint every minute to provide the most accurate, up-to-date ETAs.
  static bool GetEstimatedTime(ms::LatLon const & pos, string & result);
  /// Returns true when http request was executed successfully and response copied into @result,
  /// otherwise returns false. The response contains an estimated price range for each product
  /// offered at a given location. The price estimate is provided as a formatted string with the
  /// full price range and the localized currency symbol.
  static bool GetEstimatedPrice(ms::LatLon const & from, ms::LatLon const & to, string & result);
};

struct Product
{
  string m_productId;
  string m_name;
  string m_time;
  string m_price;     // for some currencies this field contains symbol of currency but not always
  string m_currency;  // currency can be empty, for ex. when m_price equal to Metered
};
/// @products - vector of available products for requested route, cannot be empty.
/// @requestId - identificator which was provided to GetAvailableProducts to identify request.
using ProductsCallback = function<void(vector<Product> const & products, uint64_t const requestId)>;

enum class ErrorCode
{
  NoProducts,
  RemoteError
};

/// Callback which is called when an errors occurs.
using ErrorCallback = function<void(ErrorCode const code, uint64_t const requestId)>;

/// Class which used for making products from http requests results.
class ProductMaker
{
public:
  void Reset(uint64_t const requestId);
  void SetTimes(uint64_t const requestId, string const & times);
  void SetPrices(uint64_t const requestId, string const & prices);
  void MakeProducts(uint64_t const requestId, ProductsCallback const & successFn,
                    ErrorCallback const & errorFn);

private:
  uint64_t m_requestId = 0;
  unique_ptr<string> m_times;
  unique_ptr<string> m_prices;
  mutex m_mutex;
};

struct RideRequestLinks
{
  string m_deepLink;
  string m_universalLink;
};

class Api
{
public:
  /// Requests list of available products from Uber. Returns request identificator immediately.
  uint64_t GetAvailableProducts(ms::LatLon const & from, ms::LatLon const & to,
                                ProductsCallback const & successFn, ErrorCallback const & errorFn);

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

private:
  shared_ptr<ProductMaker> m_maker = make_shared<ProductMaker>();
  uint64_t m_requestId = 0;
};

void SetUberUrlForTesting(string const & url);
string DebugPrint(ErrorCode error);
}  // namespace uber