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

ShareOption.java « sharing « util « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5ce2f36221505e75f9c2d25cb81e8a916ab78dd (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
package com.mapswithme.util.sharing;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.support.annotation.StringRes;

import com.mapswithme.maps.Framework;
import com.mapswithme.maps.R;
import com.mapswithme.maps.bookmarks.data.MapObject;
import com.mapswithme.util.Utils;
import com.mapswithme.util.statistics.Statistics;

public abstract class ShareOption
{
  public static final SmsShareOption SMS = new SmsShareOption();
  public static final EmailShareOption EMAIL = new EmailShareOption();
  public static final AnyShareOption ANY = new AnyShareOption();

  @StringRes
  protected final int mNameResId;
  protected final Intent mBaseIntent;

  protected ShareOption(int nameResId, Intent baseIntent)
  {
    mNameResId = nameResId;
    mBaseIntent = baseIntent;
  }

  public boolean isSupported(Context context)
  {
    return Utils.isIntentSupported(context, mBaseIntent);
  }

  public void shareMapObject(Activity activity, MapObject mapObject)
  {
    SharingHelper.shareOutside(new MapObjectShareable(activity, mapObject)
                 .setBaseIntent(new Intent(mBaseIntent)), mNameResId);
  }

  public static class SmsShareOption extends ShareOption
  {
    protected SmsShareOption()
    {
      super(R.string.share_by_message, new Intent(Intent.ACTION_VIEW));
    }

    public void share(Activity activity, String body)
    {
      Intent smsIntent = new Intent();
      TargetUtils.fillSmsIntent(smsIntent, body);
      activity.startActivity(smsIntent);
      Statistics.INSTANCE.trackPlaceShared("SMS");
    }

    @Override
    public void shareMapObject(Activity activity, MapObject mapObject)
    {
      final String ge0Url = Framework.nativeGetGe0Url(mapObject.getLat(), mapObject.getLon(), mapObject.getScale(), "");
      final String httpUrl = Framework.getHttpGe0Url(mapObject.getLat(), mapObject.getLon(), mapObject.getScale(), "");
      final int bodyId = MapObject.isOfType(MapObject.MY_POSITION, mapObject) ? R.string.my_position_share_sms : R.string.bookmark_share_sms;
      final String body = activity.getString(bodyId, ge0Url, httpUrl);

      share(activity, body);
    }
  }

  public static class EmailShareOption extends ShareOption
  {
    protected EmailShareOption()
    {
      super(R.string.share_by_email, new Intent(Intent.ACTION_SEND).setType(TargetUtils.TYPE_MESSAGE_RFC822));
    }
  }

  public static class AnyShareOption extends ShareOption
  {
    protected AnyShareOption()
    {
      super(R.string.share, new Intent(Intent.ACTION_SEND).setType(TargetUtils.TYPE_TEXT_PLAIN));
    }

    public void share(Activity activity, String body)
    {
      SharingHelper.shareOutside(new TextShareable(activity, body));
    }

    public void share(Activity activity, String body, @StringRes int titleRes)
    {
      SharingHelper.shareOutside(new TextShareable(activity, body), titleRes);
    }
  }
}