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

Sponsored.java « placepage « widget « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1e16b9a802005364798f0e307b5b8bdd7c9640c (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package com.mapswithme.maps.widget.placepage;

import android.support.annotation.IntDef;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.annotation.UiThread;
import android.text.TextUtils;

import com.mapswithme.maps.bookmarks.data.MapObject;
import com.mapswithme.maps.bookmarks.data.Metadata;
import com.mapswithme.maps.gallery.Image;
import com.mapswithme.maps.review.Review;
import com.mapswithme.maps.ugc.UGC;
import com.mapswithme.util.NetworkPolicy;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.ref.WeakReference;
import java.util.HashMap;
import java.util.Map;

@UiThread
public final class Sponsored
{
  // Order is important, must match place_page_info.hpp/SponsoredType.
  public static final int TYPE_NONE = 0;
  public static final int TYPE_BOOKING = 1;
  public static final int TYPE_OPENTABLE = 2;
  public static final int TYPE_PARTNER = 3;
  public static final int TYPE_HOLIDAY = 4;
  public static final int TYPE_PROMO_CATALOG_CITY = 5;
  public static final int TYPE_PROMO_CATALOG_SIGHTSEEINGS = 6;

  @Retention(RetentionPolicy.SOURCE)
  @IntDef({ TYPE_NONE, TYPE_BOOKING, TYPE_OPENTABLE, TYPE_PARTNER, TYPE_HOLIDAY,
            TYPE_PROMO_CATALOG_CITY, TYPE_PROMO_CATALOG_SIGHTSEEINGS })
  public @interface SponsoredType {}

  static class FacilityType
  {
    @NonNull
    private final String mKey;
    @NonNull
    private final String mName;

    public FacilityType(@NonNull String key, @NonNull String name)
    {
      mKey = key;
      mName = name;
    }

    @NonNull
    public String getKey()
    {
      return mKey;
    }

    @NonNull
    public String getName()
    {
      return mName;
    }
  }

  static class NearbyObject
  {
    @NonNull
    private final String mCategory;
    @NonNull
    private final String mTitle;
    @NonNull
    private final String mDistance;
    private final double mLatitude;
    private final double mLongitude;

    public NearbyObject(@NonNull String category, @NonNull String title,
                        @NonNull String distance, double lat, double lon)
    {
      mCategory = category;
      mTitle = title;
      mDistance = distance;
      mLatitude = lat;
      mLongitude = lon;
    }

    @NonNull
    public String getCategory()
    {
      return mCategory;
    }

    @NonNull
    public String getTitle()
    {
      return mTitle;
    }

    @NonNull
    public String getDistance()
    {
      return mDistance;
    }

    public double getLatitude()
    {
      return mLatitude;
    }

    public double getLongitude()
    {
      return mLongitude;
    }
  }

  static class HotelInfo
  {
    @Nullable
    final String mDescription;
    @Nullable
    final Image[] mPhotos;
    @Nullable
    final FacilityType[] mFacilities;
    @Nullable
    final Review[] mReviews;
    @Nullable
    final NearbyObject[] mNearby;
    final long mReviewsAmount;


    public HotelInfo(@Nullable String description, @Nullable Image[] photos,
                     @Nullable FacilityType[] facilities, @Nullable Review[] reviews,
                     @Nullable NearbyObject[] nearby, long reviewsAmount)
    {
      mDescription = description;
      mPhotos = photos;
      mFacilities = facilities;
      mReviews = reviews;
      mNearby = nearby;
      mReviewsAmount = reviewsAmount;
    }
  }

  interface OnPriceReceivedListener
  {
    /**
     * This method is called from the native core on the UI thread
     * when the Hotel price will be obtained
     *
     * @param priceInfo
     */
    @UiThread
    void onPriceReceived(@NonNull HotelPriceInfo priceInfo);
  }

  interface OnHotelInfoReceivedListener
  {
    /**
     * This method is called from the native core on the UI thread
     * when the Hotel information will be obtained
     *
     * @param id A hotel id
     * @param info A hotel info
     */
    @UiThread
    void onHotelInfoReceived(@NonNull String id, @NonNull HotelInfo info);
  }

  // Hotel ID -> Price
  @NonNull
  private static final Map<String, HotelPriceInfo> sPriceCache = new HashMap<>();
  // Hotel ID -> Description
  @NonNull
  private static final Map<String, HotelInfo> sInfoCache = new HashMap<>();
  @NonNull
  private static WeakReference<OnPriceReceivedListener> sPriceListener = new WeakReference<>(null);
  @NonNull
  private static WeakReference<OnHotelInfoReceivedListener> sInfoListener = new WeakReference<>(null);

  @Nullable
  private String mId;

  @NonNull
  private final String mRating;
  @UGC.Impress
  private final int mImpress;
  @NonNull
  private final String mPrice;
  @NonNull
  private final String mUrl;
  @NonNull
  private final String mDeepLink;
  @NonNull
  private final String mDescriptionUrl;
  @NonNull
  private final String mMoreUrl;
  @NonNull
  private final String mReviewUrl;
  @SponsoredType
  private final int mType;
  private final int mPartnerIndex;
  @NonNull
  private final String mPartnerName;

  private Sponsored(@NonNull String rating, @UGC.Impress int impress, @NonNull String price,
                    @NonNull String url, @NonNull String deepLink, @NonNull String descriptionUrl,
                    @NonNull String moreUrl, @NonNull String reviewUrl, @SponsoredType int type,
                    int partnerIndex, @NonNull String partnerName)
  {
    mRating = rating;
    mImpress = impress;
    mPrice = price;
    mUrl = url;
    mDeepLink = deepLink;
    mDescriptionUrl = descriptionUrl;
    mMoreUrl = moreUrl;
    mReviewUrl = reviewUrl;
    mType = type;
    mPartnerIndex = partnerIndex;
    mPartnerName = partnerName;
  }

  void updateId(MapObject point)
  {
    mId = point.getMetadata(Metadata.MetadataType.FMD_SPONSORED_ID);
  }

  @Nullable
  public String getId()
  {
    return mId;
  }

  @NonNull
  public String getRating()
  {
    return mRating;
  }

  @UGC.Impress
  int getImpress()
  {
    return mImpress;
  }

  @NonNull
  String getPrice()
  {
    return mPrice;
  }

  @NonNull
  public String getUrl()
  {
    return mUrl;
  }

  @NonNull
  public String getDeepLink()
  {
    return mDeepLink;
  }

  @NonNull
  String getDescriptionUrl()
  {
    return mDescriptionUrl;
  }

  @NonNull
  String getMoreUrl()
  {
    return mMoreUrl;
  }

  @NonNull
  String getReviewUrl()
  {
    return mReviewUrl;
  }

  @SponsoredType
  public int getType()
  {
    return mType;
  }

  public int getPartnerIndex()
  {
    return mPartnerIndex;
  }

  @NonNull
  public String getPartnerName()
  {
    return mPartnerName;
  }

  static void setPriceListener(@NonNull OnPriceReceivedListener listener)
  {
    sPriceListener = new WeakReference<>(listener);
  }

  static void setInfoListener(@NonNull OnHotelInfoReceivedListener listener)
  {
    sInfoListener = new WeakReference<>(listener);
  }

  /**
   * Make request to obtain hotel price information.
   * This method also checks cache for requested hotel id
   * and if cache exists - call {@link #onPriceReceived(HotelPriceInfo) onPriceReceived} immediately
   *  @param id A Hotel id
   * @param currencyCode A user currency
   * @param policy A network policy
   */
  static void requestPrice(@NonNull String id, @NonNull String currencyCode,
                           @NonNull NetworkPolicy policy)
  {
    HotelPriceInfo p = sPriceCache.get(id);
    if (p != null)
      onPriceReceived(p);

    nativeRequestPrice(policy, id, currencyCode);
  }


  static void requestInfo(@NonNull Sponsored sponsored,
                          @NonNull String locale, @NonNull NetworkPolicy policy)
  {
    String id = sponsored.getId();
    if (id == null)
      return;

    switch (sponsored.getType())
    {
      case TYPE_BOOKING:
        requestHotelInfo(id, locale, policy);
        break;
      case TYPE_OPENTABLE:
//        TODO: request opentable info
        break;
      case TYPE_NONE:
        break;
    }
  }

  /**
   * Make request to obtain hotel information.
   * This method also checks cache for requested hotel id
   * and if cache exists - call {@link #onHotelInfoReceived(String, HotelInfo) onHotelInfoReceived} immediately
   *  @param id A Hotel id
   * @param locale A user locale
   * @param policy A network policy
   */
  private static void requestHotelInfo(@NonNull String id, @NonNull String locale,
                                       @NonNull NetworkPolicy policy)
  {
    HotelInfo info = sInfoCache.get(id);
    if (info != null)
      onHotelInfoReceived(id, info);

    nativeRequestHotelInfo(policy, id, locale);
  }

  private static void onPriceReceived(@NonNull HotelPriceInfo priceInfo)
  {
    if (TextUtils.isEmpty(priceInfo.getPrice()))
      return;

    sPriceCache.put(priceInfo.getId(), priceInfo);


    OnPriceReceivedListener listener = sPriceListener.get();
    if (listener != null)
      listener.onPriceReceived(priceInfo);
  }

  private static void onHotelInfoReceived(@NonNull String id, @NonNull HotelInfo info)
  {
    sInfoCache.put(id, info);

    OnHotelInfoReceivedListener listener = sInfoListener.get();
    if (listener != null)
      listener.onHotelInfoReceived(id, info);
  }

  @NonNull
  static String getPackageName(@SponsoredType int type)
  {
    switch (type)
    {
      case Sponsored.TYPE_BOOKING:
        return "com.booking";
      default:
        throw new AssertionError("Unsupported sponsored type: " + type);
    }
  }

  @Nullable
  public static native Sponsored nativeGetCurrent();

  private static native void nativeRequestPrice(@NonNull NetworkPolicy policy,
                                                @NonNull String id, @NonNull String currencyCode);

  private static native void nativeRequestHotelInfo(@NonNull NetworkPolicy policy,
                                                    @NonNull String id, @NonNull String locale);
}