1 /* oauth_prof.c -- OAuth 2.0 implementation for XOAUTH2 in SMTP and POP3.
3 * This code is Copyright (c) 2014, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
11 #include "context_find.h"
26 #include "m_maildir.h"
28 static const struct mh_oauth_service_info SERVICES
[] = {
29 /* https://developers.google.com/accounts/docs/OAuth2InstalledApp */
32 /* display_name */ "Gmail",
34 /* client_id */ "91584523849-8lv9kgp1rvp8ahta6fa4b125tn2polcg.apps.googleusercontent.com",
35 /* client_secret */ "Ua8sX34xyv7hVrKM-U70dKI6",
37 /* auth_endpoint */ "https://accounts.google.com/o/oauth2/auth",
38 /* redirect_uri */ "urn:ietf:wg:oauth:2.0:oob",
39 /* token_endpoint */ "https://accounts.google.com/o/oauth2/token",
40 /* scope */ "https://mail.google.com/"
44 /* Copy service info so we don't have to free it only sometimes. */
46 copy_svc(mh_oauth_service_info
*to
, const mh_oauth_service_info
*from
)
48 to
->display_name
= from
->display_name
;
49 #define copy(_field_) to->_field_ = getcpy(from->_field_)
60 /* Return profile component node name for a service parameter. */
62 mh_oauth_node_name_for_svc(const char *base_name
, const char *svc
)
65 return concat("oauth-", svc
, "-", base_name
, NULL
);
68 /* Update one service_info field if overridden in profile. */
70 update_svc_field(char **field
, const char *base_name
, const char *svc
)
72 char *name
= mh_oauth_node_name_for_svc(base_name
, svc
);
73 const char *value
= context_find(name
);
76 *field
= mh_xstrdup(value
);
81 /* Update all service_info fields that are overridden in profile. */
83 update_svc(mh_oauth_service_info
*svc
, const char *svc_name
, char *errbuf
,
86 #define update(name) \
87 update_svc_field(&svc->name, #name, svc_name); \
88 if (svc->name == NULL) { \
89 snprintf(errbuf, errbuflen, "%s", #name " is missing"); \
90 errbuf[errbuflen - 1] = '\0'; \
95 update(client_secret
);
96 update(auth_endpoint
);
97 update(token_endpoint
);
101 if (svc
->name
== NULL
) {
102 svc
->name
= getcpy(svc_name
);
105 if (svc
->display_name
== NULL
) {
106 svc
->display_name
= svc
->name
;
113 mh_oauth_get_service_info(const char *svc_name
, mh_oauth_service_info
*svcinfo
,
114 char *errbuf
, size_t errbuflen
)
118 svcinfo
->name
= svcinfo
->display_name
= NULL
;
119 svcinfo
->scope
= svcinfo
->client_id
= NULL
;
120 svcinfo
->client_secret
= svcinfo
->auth_endpoint
= NULL
;
121 svcinfo
->token_endpoint
= svcinfo
->redirect_uri
= NULL
;
123 for (i
= 0; i
< (int)DIM(SERVICES
); i
++) {
124 if (strcmp(SERVICES
[i
].name
, svc_name
) == 0) {
125 copy_svc(svcinfo
, &SERVICES
[i
]);
130 return update_svc(svcinfo
, svc_name
, errbuf
, errbuflen
);
133 /* Return value must be free(3)'d. */
135 mh_oauth_cred_fn(const char *svc
)
137 char *key
= mh_oauth_node_name_for_svc("credential-file", svc
);
138 char *value
= context_find(key
);
144 return mh_xstrdup(value
);
146 value
= concat("oauth-", svc
, NULL
);
148 const char *md
= m_maildir(value
);
152 return mh_xstrdup(md
);