|
19 | 19 | import org.codehaus.jettison.json.JSONException;
|
20 | 20 | import org.codehaus.jettison.json.JSONObject;
|
21 | 21 | import org.jasypt.exceptions.EncryptionOperationNotPossibleException;
|
22 |
| -import org.orcid.core.adapter.impl.MapperFacadeFactory; |
23 | 22 | import org.orcid.core.constants.EmailConstants;
|
24 | 23 | import org.orcid.core.manager.AdminManager;
|
25 | 24 | import org.orcid.core.manager.EncryptionManager;
|
|
28 | 27 | import org.orcid.core.manager.TwoFactorAuthenticationManager;
|
29 | 28 | import org.orcid.core.manager.UserConnectionManager;
|
30 | 29 | import org.orcid.core.manager.v3.*;
|
31 |
| -import org.orcid.core.manager.v3.read_only.ProfileEmailDomainManagerReadOnly; |
32 |
| -import org.orcid.core.manager.v3.read_only.EmailManagerReadOnly; |
33 |
| -import org.orcid.core.manager.v3.read_only.GivenPermissionToManagerReadOnly; |
34 |
| -import org.orcid.core.manager.v3.read_only.ProfileEntityManagerReadOnly; |
35 |
| -import org.orcid.core.manager.v3.read_only.RecordNameManagerReadOnly; |
| 30 | +import org.orcid.core.manager.v3.read_only.*; |
36 | 31 | import org.orcid.core.togglz.Features;
|
37 | 32 | import org.orcid.core.utils.JsonUtils;
|
38 | 33 | import org.orcid.core.utils.v3.OrcidIdentifierUtils;
|
|
43 | 38 | import org.orcid.jaxb.model.v3.release.record.Biography;
|
44 | 39 | import org.orcid.jaxb.model.v3.release.record.Emails;
|
45 | 40 | import org.orcid.jaxb.model.v3.release.record.Name;
|
46 |
| -import org.orcid.persistence.jpa.entities.EmailEntity; |
47 |
| -import org.orcid.persistence.jpa.entities.ProfileEmailDomainEntity; |
48 |
| -import org.orcid.persistence.jpa.entities.ProfileEntity; |
49 |
| -import org.orcid.persistence.jpa.entities.UserconnectionEntity; |
| 41 | +import org.orcid.persistence.jpa.entities.*; |
50 | 42 | import org.orcid.pojo.AddEmail;
|
51 | 43 | import org.orcid.pojo.ApplicationSummary;
|
52 | 44 | import org.orcid.pojo.ChangePassword;
|
|
58 | 50 | import org.orcid.pojo.ajaxForm.*;
|
59 | 51 | import org.orcid.utils.OrcidStringUtils;
|
60 | 52 | import org.orcid.utils.alerting.SlackManager;
|
61 |
| -import org.springframework.beans.factory.annotation.Autowired; |
62 |
| -import org.springframework.beans.factory.annotation.Qualifier; |
63 | 53 | import org.springframework.stereotype.Controller;
|
64 | 54 | import org.springframework.validation.MapBindingResult;
|
65 | 55 | import org.springframework.validation.ObjectError;
|
|
70 | 60 | import org.springframework.web.bind.annotation.RequestParam;
|
71 | 61 | import org.springframework.web.bind.annotation.ResponseBody;
|
72 | 62 | import org.springframework.web.servlet.ModelAndView;
|
73 |
| -import org.springframework.web.servlet.mvc.support.RedirectAttributes; |
74 | 63 |
|
75 | 64 | /**
|
76 | 65 | * @author Declan Newman (declan) Date: 22/02/2012
|
@@ -139,6 +128,12 @@ public class ManageProfileController extends BaseWorkspaceController {
|
139 | 128 | @Resource(name = "notificationManagerV3")
|
140 | 129 | private NotificationManager notificationManager;
|
141 | 130 |
|
| 131 | + @Resource(name = "profileInterstitialFlagManagerReadOnly") |
| 132 | + private ProfileInterstitialFlagManagerReadOnly profileInterstitialFlagManagerReadOnly; |
| 133 | + |
| 134 | + @Resource(name = "profileInterstitialFlagManager") |
| 135 | + private ProfileInterstitialFlagManager profileInterstitialFlagManager; |
| 136 | + |
142 | 137 | @RequestMapping
|
143 | 138 | public ModelAndView manageProfile() {
|
144 | 139 | return new ModelAndView("manage");
|
@@ -1061,4 +1056,16 @@ private void verifyPrimaryEmailIfNeeded(String orcid) {
|
1061 | 1056 | public @ResponseBody EmailFrequencyOptions getEmailFrequencyOptions() {
|
1062 | 1057 | return emailManagerReadOnly.getEmailFrequencyOptions();
|
1063 | 1058 | }
|
| 1059 | + |
| 1060 | + @RequestMapping(value = "/hasInterstitialFlag/{interstitialName}") |
| 1061 | + public @ResponseBody Boolean hasInterstitialFlag(@PathVariable("interstitialName") String interstitialName) { |
| 1062 | + String orcid = getCurrentUserOrcid(); |
| 1063 | + return profileInterstitialFlagManagerReadOnly.hasInterstitialFlag(orcid, interstitialName); |
| 1064 | + } |
| 1065 | + |
| 1066 | + @RequestMapping(value = "/addInterstitialFlag", method = RequestMethod.POST) |
| 1067 | + public @ResponseBody ProfileInterstitialFlagEntity addInterstitialFlag(@RequestBody String interstitialName) { |
| 1068 | + String orcid = getCurrentUserOrcid(); |
| 1069 | + return profileInterstitialFlagManager.addInterstitialFlag(orcid, interstitialName); |
| 1070 | + } |
1064 | 1071 | }
|
0 commit comments