高章伟
2022-02-24 2aa8da8af66aa8ae00f25831aed6bb0364176e7b
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
public with sharing class viewShareSurveyComponentController {
 
public Id surveyId {get;
    set{
        this.surveyId = value;
        init();
    }
 
}
 
public Survey__c mySurvey {get;set;}
public List<SelectOption> urlType {get;set;}
public String selectedURLType {get;set;}
public String POD                                {get; set;}
public List<Selectoption>  sitesPicklist         {get; set;} 
public String surveySite                         {get; set;}
public String showAddSitesMessage                {get; set;} 
private String subdomain; 
private boolean useTopLevelDomain;                        
public String siteInfo  {get; set;}
 
public String surveyURL{
    get{
        if (selectedURLType == 'Email Link, Anonymous' || selectedURLType == 'Chatter')
        {
            return 'id=' + surveyId + '&cId=none&caId=none';
        }
        else if (selectedURLType == 'Email Link w/ Contact Merge')
        {
            return 'id=' + surveyId + '&cId={!Contact.Id}&caId=none';
        }
        else
        {
            return 'id=' + surveyId +  '&cId={!Contact.Id}&caId={!Case.id}';
        }
    }
    
    set;
}
 
public String surveyURLBase{
    get{
            if(surveySite == '--SELECT SITE--'){
               POD='';
              return null;
            }
       
            String urlPrefix = setupUrlPrefix(surveySite);
            String domain = setupDomainForSurvey(POD);
            String urlToSave= domain+'/'+urlPrefix+'TakeSurvey?';
            if (surveySite == 'Internal' || selectedURLType == 'Chatter')
            {
                urlToSave = URL.getSalesforceBaseUrl().toExternalForm() + '/apex/' + 'TakeSurvey?';
            }
            return urlToSave;
    }
    set;
}
 
 
 
 
public viewShareSurveyComponentController()
{
    urlType = new List<SelectOption>();
    urlType.add(new SelectOption('Email Link w/ Contact Merge',System.Label.LABS_SF_Email_Link_w_Contact_Merge));
    urlType.add(new SelectOption('Email Link w/ Contact & Case Merge',System.Label.LABS_SF_Email_Link_w_Contact_Case_Merge));
    urlType.add(new SelectOption('Email Link, Anonymous',System.Label.LABS_SF_Email_Link_Anonymous));
    urlType.add(new SelectOption('Chatter',System.Label.LABS_SF_Chatter)); 
    selectedURLType = 'Chatter';
    
    setupPOD();
    setupSitesPicklist();
    siteInfo = Site.getDomain();
    
    init();
}
 
private void setupPOD()
{
    String urlToSplit = URL.getSalesforceBaseUrl().toExternalForm();
    List<String> splitURL = urlToSplit.split('\\.');
    Integer loc = -1;
    Integer i;
    
    
    for (i = 0; i < splitURL.size(); i++)
    {
        
         if(splitURL.get(i) == 'visual' || splitURL.get(i)  == 'salesforce'){
              loc = i - 1;
                 break;
          }
    }
    
    
    if (loc == -1)
    {
        pod = 'NO_POD';
        return;
    }
    
    if(splitURL.get(loc + 1)=='visual')
    {
        pod = splitURL.get(loc);
    }
    else
    {
        pod = 'NO_POD';
    }
    
    
    
}
 
 
 private void setupSitesPicklist(){
    
    List<SurveySitesUtil.SurveySiteInfo> sites = new SurveySitesUtil().getSiteList();
    if (sites.size() > 0) {
        subdomain = sites[0].Subdomain;
    } 
    useTopLevelDomain=false;
    String pathPrefix;
    sitesPicklist = new List<Selectoption>();
    sitesPicklist.add(new Selectoption('Internal',System.Label.LABS_SF_Internal));
    for(SurveySitesUtil.SurveySiteInfo current : sites){
      if(current.prefix == null)
        pathPrefix='EMPTY';
      else
        pathPrefix=current.prefix;
        
      sitesPicklist.add(new Selectoption(pathPrefix, current.Name));
    }
    
    surveySite = 'Internal';
  }
 
private String setupDomainForSurvey(String pod){
    if(pod != 'NO_POD' && !useTopLevelDomain && checkSubdomain(subdomain)){
      return 'http://'+subdomain+'.'+pod+'.force.com';
    }
    else if(pod != 'NO_POD' && useTopLevelDomain && checkSubdomain(subdomain)){
      return 'http://'+subdomain+'.'+pod;
    }
    else if(useTopLevelDomain) {
      return 'http://'+subdomain;   
    }
    else{
      return 'http://'+subdomain+'.force.com';
    }
  }
  
  private boolean checkSubdomain(String subdomain){
    if(subdomain == null)
     return false;
    else if (subdomain.contains('developer-edition'))
     return true;
    else
     return false;
  }
  
  private String setupUrlPrefix(String site){
    if(site == null || site=='EMPTY')
     return '';
    else
     return site+'/';
  }
 
 
 
 
public void init()
{
    if (surveyId != null)
    {
        mySurvey = [Select Id, Name, Survey_Header__c, thankYouText__c, thankYouLink__c, URL__c FROM Survey__c where Id=:surveyId];
    }
}
 
 
private static testmethod void testShareSurvey()
{
    Survey__c mySurvey = new Survey__c();
    mySurvey.Submit_Response__c = 'empty';  
    insert mySurvey;
    
    viewShareSurveyComponentController vss = new viewShareSurveyComponentController();
    vss.surveyId = mySurvey.Id;
    
    vss.selectedURLType = 'Chatter';
    System.assertEquals(URL.getSalesforceBaseUrl().toExternalForm() + '/apex/' + 'TakeSurvey?', vss.surveyURLBase);
    System.assertEquals('id=' + mySurvey.Id + '&cId=none&caId=none', vss.surveyURL);
    
    vss.selectedURLType = 'Email Link w/ Contact Merge';
    System.assertEquals('id=' + mySurvey.Id + '&cId={!Contact.Id}&caId=none', vss.surveyURL);
    
    vss.selectedURLType = 'Email Link w/ Contact & Case Merge';
    System.assertEquals('id=' + mySurvey.Id +  '&cId={!Contact.Id}&caId={!Case.id}', vss.surveyURL);
 
    System.assertEquals(true, vss.checkSubdomain('test.developer-edition.salesforce'));
    System.assertEquals(false, vss.checkSubdomain(null));
    System.assertEquals(false, vss.checkSubdomain('test.salesforce.com'));
    
    System.assertEquals('', vss.setupUrlPrefix('EMPTY'));
    
    vss.surveySite = '--SELECT SITE--';
    System.assertEquals(null, vss.surveyURLBase);
    
 
    
}
 
}