Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ident.c |
| 3 | * |
| 4 | * create git identifier lines of the form "name <email> date" |
| 5 | * |
| 6 | * Copyright (C) 2005 Linus Torvalds |
| 7 | */ |
| 8 | #include "cache.h" |
| 9 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 10 | static struct strbuf git_default_name = STRBUF_INIT; |
| 11 | static struct strbuf git_default_email = STRBUF_INIT; |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 12 | static char git_default_date[50]; |
Jeff King | 2d4b4fc | 2012-05-21 19:09:57 -0400 | [diff] [blame] | 13 | int user_ident_explicitly_given; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 14 | |
Rafael Gieschke | 590e081 | 2011-05-19 13:37:55 +0200 | [diff] [blame] | 15 | #ifdef NO_GECOS_IN_PWENT |
| 16 | #define get_gecos(ignored) "&" |
| 17 | #else |
| 18 | #define get_gecos(struct_passwd) ((struct_passwd)->pw_gecos) |
| 19 | #endif |
| 20 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 21 | static void copy_gecos(const struct passwd *w, struct strbuf *name) |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 22 | { |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 23 | char *src; |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 24 | |
| 25 | /* Traditionally GECOS field had office phone numbers etc, separated |
| 26 | * with commas. Also & stands for capitalized form of the login name. |
| 27 | */ |
| 28 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 29 | for (src = get_gecos(w); *src && *src != ','; src++) { |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 30 | int ch = *src; |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 31 | if (ch != '&') |
| 32 | strbuf_addch(name, ch); |
| 33 | else { |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 34 | /* Sorry, Mr. McDonald... */ |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 35 | strbuf_addch(name, toupper(*w->pw_name)); |
| 36 | strbuf_addstr(name, w->pw_name + 1); |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 37 | } |
| 38 | } |
Junio C Hamano | e9bacb4 | 2005-09-19 16:06:56 -0700 | [diff] [blame] | 39 | } |
| 40 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 41 | static int add_mailname_host(struct strbuf *buf) |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 42 | { |
| 43 | FILE *mailname; |
| 44 | |
| 45 | mailname = fopen("/etc/mailname", "r"); |
| 46 | if (!mailname) { |
| 47 | if (errno != ENOENT) |
| 48 | warning("cannot open /etc/mailname: %s", |
| 49 | strerror(errno)); |
| 50 | return -1; |
| 51 | } |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 52 | if (strbuf_getline(buf, mailname, '\n') == EOF) { |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 53 | if (ferror(mailname)) |
| 54 | warning("cannot read /etc/mailname: %s", |
| 55 | strerror(errno)); |
| 56 | fclose(mailname); |
| 57 | return -1; |
| 58 | } |
| 59 | /* success! */ |
| 60 | fclose(mailname); |
| 61 | return 0; |
| 62 | } |
| 63 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 64 | static void add_domainname(struct strbuf *out) |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 65 | { |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 66 | char buf[1024]; |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 67 | struct hostent *he; |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 68 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 69 | if (gethostname(buf, sizeof(buf))) { |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 70 | warning("cannot get host name: %s", strerror(errno)); |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 71 | strbuf_addstr(out, "(none)"); |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 72 | return; |
| 73 | } |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 74 | if (strchr(buf, '.')) |
Jeff King | f8254d3 | 2012-05-21 19:10:23 -0400 | [diff] [blame] | 75 | strbuf_addstr(out, buf); |
| 76 | else if ((he = gethostbyname(buf)) && strchr(he->h_name, '.')) |
| 77 | strbuf_addstr(out, he->h_name); |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 78 | else |
Jeff King | f8254d3 | 2012-05-21 19:10:23 -0400 | [diff] [blame] | 79 | strbuf_addf(out, "%s.(none)", buf); |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 80 | } |
| 81 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 82 | static void copy_email(const struct passwd *pw, struct strbuf *email) |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 83 | { |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 84 | /* |
| 85 | * Make up a fake email address |
| 86 | * (name + '@' + hostname [+ '.' + domainname]) |
| 87 | */ |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 88 | strbuf_addstr(email, pw->pw_name); |
| 89 | strbuf_addch(email, '@'); |
Petr Baudis | adc3dbc | 2005-10-21 03:57:39 +0200 | [diff] [blame] | 90 | |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 91 | if (!add_mailname_host(email)) |
Jonathan Nieder | 8a55caa | 2011-10-03 01:16:33 -0500 | [diff] [blame] | 92 | return; /* read from "/etc/mailname" (Debian) */ |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 93 | add_domainname(email); |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 96 | const char *ident_default_name(void) |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 97 | { |
Jeff King | be641ab | 2012-05-21 19:10:29 -0400 | [diff] [blame] | 98 | if (!git_default_name.len) { |
Jeff King | 2f70587 | 2012-05-21 19:10:20 -0400 | [diff] [blame] | 99 | copy_gecos(xgetpwuid_self(), &git_default_name); |
Jeff King | be641ab | 2012-05-21 19:10:29 -0400 | [diff] [blame] | 100 | strbuf_trim(&git_default_name); |
| 101 | } |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 102 | return git_default_name.buf; |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 103 | } |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 104 | |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 105 | const char *ident_default_email(void) |
| 106 | { |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 107 | if (!git_default_email.len) { |
Matt Kraai | 46f74f0 | 2007-07-05 17:29:41 -0700 | [diff] [blame] | 108 | const char *email = getenv("EMAIL"); |
| 109 | |
Junio C Hamano | 99178c8 | 2010-01-08 08:01:10 -0800 | [diff] [blame] | 110 | if (email && email[0]) { |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 111 | strbuf_addstr(&git_default_email, email); |
Junio C Hamano | 99178c8 | 2010-01-08 08:01:10 -0800 | [diff] [blame] | 112 | user_ident_explicitly_given |= IDENT_MAIL_GIVEN; |
Jeff King | 2f70587 | 2012-05-21 19:10:20 -0400 | [diff] [blame] | 113 | } else |
| 114 | copy_email(xgetpwuid_self(), &git_default_email); |
Jeff King | be641ab | 2012-05-21 19:10:29 -0400 | [diff] [blame] | 115 | strbuf_trim(&git_default_email); |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 116 | } |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 117 | return git_default_email.buf; |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 118 | } |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 119 | |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 120 | const char *ident_default_date(void) |
| 121 | { |
Junio C Hamano | 0175476 | 2007-01-28 00:50:53 -0800 | [diff] [blame] | 122 | if (!git_default_date[0]) |
| 123 | datestamp(git_default_date, sizeof(git_default_date)); |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 124 | return git_default_date; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 127 | static int crud(unsigned char c) |
| 128 | { |
Alex Riesen | f64c81d | 2007-12-03 20:11:43 +0100 | [diff] [blame] | 129 | return c <= 32 || |
| 130 | c == '.' || |
| 131 | c == ',' || |
| 132 | c == ':' || |
| 133 | c == ';' || |
| 134 | c == '<' || |
| 135 | c == '>' || |
| 136 | c == '"' || |
Linus Torvalds | d404bf0 | 2008-12-01 08:41:50 -0800 | [diff] [blame] | 137 | c == '\\' || |
Alex Riesen | f64c81d | 2007-12-03 20:11:43 +0100 | [diff] [blame] | 138 | c == '\''; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Copy over a string to the destination, but avoid special |
| 143 | * characters ('\n', '<' and '>') and remove crud at the end |
| 144 | */ |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 145 | static void strbuf_addstr_without_crud(struct strbuf *sb, const char *src) |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 146 | { |
Luiz Fernando N. Capitulino | b073211 | 2007-04-15 15:51:29 -0300 | [diff] [blame] | 147 | size_t i, len; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 148 | unsigned char c; |
| 149 | |
| 150 | /* Remove crud from the beginning.. */ |
| 151 | while ((c = *src) != 0) { |
| 152 | if (!crud(c)) |
| 153 | break; |
| 154 | src++; |
| 155 | } |
| 156 | |
| 157 | /* Remove crud from the end.. */ |
| 158 | len = strlen(src); |
| 159 | while (len > 0) { |
| 160 | c = src[len-1]; |
| 161 | if (!crud(c)) |
| 162 | break; |
| 163 | --len; |
| 164 | } |
| 165 | |
| 166 | /* |
| 167 | * Copy the rest to the buffer, but avoid the special |
Junio C Hamano | 82f9d58 | 2005-12-29 01:30:08 -0800 | [diff] [blame] | 168 | * characters '\n' '<' and '>' that act as delimiters on |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 169 | * an identification line. We can only remove crud, never add it, |
| 170 | * so 'len' is our maximum. |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 171 | */ |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 172 | strbuf_grow(sb, len); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 173 | for (i = 0; i < len; i++) { |
| 174 | c = *src++; |
| 175 | switch (c) { |
| 176 | case '\n': case '<': case '>': |
| 177 | continue; |
| 178 | } |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 179 | sb->buf[sb->len++] = c; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 180 | } |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 181 | sb->buf[sb->len] = '\0'; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 182 | } |
| 183 | |
Junio C Hamano | 4b340cf | 2012-03-11 01:25:43 -0800 | [diff] [blame] | 184 | /* |
| 185 | * Reverse of fmt_ident(); given an ident line, split the fields |
| 186 | * to allow the caller to parse it. |
| 187 | * Signal a success by returning 0, but date/tz fields of the result |
| 188 | * can still be NULL if the input line only has the name/email part |
| 189 | * (e.g. reading from a reflog entry). |
| 190 | */ |
| 191 | int split_ident_line(struct ident_split *split, const char *line, int len) |
| 192 | { |
| 193 | const char *cp; |
| 194 | size_t span; |
| 195 | int status = -1; |
| 196 | |
| 197 | memset(split, 0, sizeof(*split)); |
| 198 | |
| 199 | split->name_begin = line; |
| 200 | for (cp = line; *cp && cp < line + len; cp++) |
| 201 | if (*cp == '<') { |
| 202 | split->mail_begin = cp + 1; |
| 203 | break; |
| 204 | } |
| 205 | if (!split->mail_begin) |
| 206 | return status; |
| 207 | |
| 208 | for (cp = split->mail_begin - 2; line < cp; cp--) |
| 209 | if (!isspace(*cp)) { |
| 210 | split->name_end = cp + 1; |
| 211 | break; |
| 212 | } |
| 213 | if (!split->name_end) |
| 214 | return status; |
| 215 | |
| 216 | for (cp = split->mail_begin; cp < line + len; cp++) |
| 217 | if (*cp == '>') { |
| 218 | split->mail_end = cp; |
| 219 | break; |
| 220 | } |
| 221 | if (!split->mail_end) |
| 222 | return status; |
| 223 | |
| 224 | for (cp = split->mail_end + 1; cp < line + len && isspace(*cp); cp++) |
| 225 | ; |
| 226 | if (line + len <= cp) |
| 227 | goto person_only; |
| 228 | split->date_begin = cp; |
| 229 | span = strspn(cp, "0123456789"); |
| 230 | if (!span) |
| 231 | goto person_only; |
| 232 | split->date_end = split->date_begin + span; |
| 233 | for (cp = split->date_end; cp < line + len && isspace(*cp); cp++) |
| 234 | ; |
| 235 | if (line + len <= cp || (*cp != '+' && *cp != '-')) |
| 236 | goto person_only; |
| 237 | split->tz_begin = cp; |
| 238 | span = strspn(cp + 1, "0123456789"); |
| 239 | if (!span) |
| 240 | goto person_only; |
| 241 | split->tz_end = split->tz_begin + 1 + span; |
| 242 | return 0; |
| 243 | |
| 244 | person_only: |
| 245 | split->date_begin = NULL; |
| 246 | split->date_end = NULL; |
| 247 | split->tz_begin = NULL; |
| 248 | split->tz_end = NULL; |
| 249 | return 0; |
| 250 | } |
| 251 | |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 252 | static const char *env_hint = |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 253 | "\n" |
Santi Béjar | 6c293d4 | 2008-03-08 12:30:04 +0100 | [diff] [blame] | 254 | "*** Please tell me who you are.\n" |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 255 | "\n" |
| 256 | "Run\n" |
| 257 | "\n" |
David Symonds | 8e7425d | 2007-12-07 10:36:45 +1100 | [diff] [blame] | 258 | " git config --global user.email \"you@example.com\"\n" |
Steffen Prohaska | 180787c | 2007-08-14 00:05:50 +0200 | [diff] [blame] | 259 | " git config --global user.name \"Your Name\"\n" |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 260 | "\n" |
Steffen Prohaska | 180787c | 2007-08-14 00:05:50 +0200 | [diff] [blame] | 261 | "to set your account\'s default identity.\n" |
| 262 | "Omit --global to set the identity only in this repository.\n" |
Han-Wen Nienhuys | d5cc2de | 2006-11-28 11:27:39 +0100 | [diff] [blame] | 263 | "\n"; |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 264 | |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 265 | const char *fmt_ident(const char *name, const char *email, |
| 266 | const char *date_str, int flag) |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 267 | { |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 268 | static struct strbuf ident = STRBUF_INIT; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 269 | char date[50]; |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 270 | int error_on_no_name = (flag & IDENT_ERROR_ON_NO_NAME); |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 271 | int name_addr_only = (flag & IDENT_NO_DATE); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 272 | |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 273 | if (!name) |
| 274 | name = ident_default_name(); |
| 275 | if (!email) |
| 276 | email = ident_default_email(); |
Junio C Hamano | dfdd309 | 2006-02-07 13:19:10 -0800 | [diff] [blame] | 277 | |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 278 | if (!*name) { |
Junio C Hamano | cb280e1 | 2007-01-25 19:05:01 -0800 | [diff] [blame] | 279 | struct passwd *pw; |
| 280 | |
Jeff King | b9f0ac1 | 2012-05-21 19:10:11 -0400 | [diff] [blame] | 281 | if (error_on_no_name) { |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 282 | if (name == git_default_name.buf) |
Jeff King | b9f0ac1 | 2012-05-21 19:10:11 -0400 | [diff] [blame] | 283 | fputs(env_hint, stderr); |
Jeff King | b00f6cf | 2012-05-24 19:26:32 -0400 | [diff] [blame^] | 284 | die("empty ident name (for <%s>) not allowed", email); |
Jeff King | b9f0ac1 | 2012-05-21 19:10:11 -0400 | [diff] [blame] | 285 | } |
Jeff King | 2f70587 | 2012-05-21 19:10:20 -0400 | [diff] [blame] | 286 | pw = xgetpwuid_self(); |
Jeff King | 060d4bb | 2012-05-21 19:10:14 -0400 | [diff] [blame] | 287 | name = pw->pw_name; |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 288 | } |
Junio C Hamano | dfdd309 | 2006-02-07 13:19:10 -0800 | [diff] [blame] | 289 | |
Jeff King | bcb2b00 | 2012-05-21 19:09:43 -0400 | [diff] [blame] | 290 | strcpy(date, ident_default_date()); |
Jeff King | 4579bb4 | 2010-12-13 12:02:25 -0500 | [diff] [blame] | 291 | if (!name_addr_only && date_str && date_str[0]) { |
| 292 | if (parse_date(date_str, date, sizeof(date)) < 0) |
| 293 | die("invalid date format: %s", date_str); |
| 294 | } |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 295 | |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 296 | strbuf_reset(&ident); |
| 297 | strbuf_addstr_without_crud(&ident, name); |
| 298 | strbuf_addstr(&ident, " <"); |
| 299 | strbuf_addstr_without_crud(&ident, email); |
| 300 | strbuf_addch(&ident, '>'); |
Junio C Hamano | d9ccfe7 | 2007-12-02 13:43:34 -0800 | [diff] [blame] | 301 | if (!name_addr_only) { |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 302 | strbuf_addch(&ident, ' '); |
| 303 | strbuf_addstr_without_crud(&ident, date); |
Junio C Hamano | d9ccfe7 | 2007-12-02 13:43:34 -0800 | [diff] [blame] | 304 | } |
Jeff King | c96f0c8 | 2012-05-21 19:10:26 -0400 | [diff] [blame] | 305 | return ident.buf; |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 306 | } |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 307 | |
Junio C Hamano | d9ccfe7 | 2007-12-02 13:43:34 -0800 | [diff] [blame] | 308 | const char *fmt_name(const char *name, const char *email) |
| 309 | { |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 310 | return fmt_ident(name, email, NULL, IDENT_ERROR_ON_NO_NAME | IDENT_NO_DATE); |
Junio C Hamano | d9ccfe7 | 2007-12-02 13:43:34 -0800 | [diff] [blame] | 311 | } |
| 312 | |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 313 | const char *git_author_info(int flag) |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 314 | { |
Junio C Hamano | 798123a | 2007-02-04 17:50:14 -0800 | [diff] [blame] | 315 | return fmt_ident(getenv("GIT_AUTHOR_NAME"), |
Junio C Hamano | c7d77da | 2005-11-21 23:44:35 -0800 | [diff] [blame] | 316 | getenv("GIT_AUTHOR_EMAIL"), |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 317 | getenv("GIT_AUTHOR_DATE"), |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 318 | flag); |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 319 | } |
| 320 | |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 321 | const char *git_committer_info(int flag) |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 322 | { |
Junio C Hamano | 91c38a2 | 2010-01-08 07:39:11 -0800 | [diff] [blame] | 323 | if (getenv("GIT_COMMITTER_NAME")) |
| 324 | user_ident_explicitly_given |= IDENT_NAME_GIVEN; |
| 325 | if (getenv("GIT_COMMITTER_EMAIL")) |
| 326 | user_ident_explicitly_given |= IDENT_MAIL_GIVEN; |
Junio C Hamano | 798123a | 2007-02-04 17:50:14 -0800 | [diff] [blame] | 327 | return fmt_ident(getenv("GIT_COMMITTER_NAME"), |
Junio C Hamano | c7d77da | 2005-11-21 23:44:35 -0800 | [diff] [blame] | 328 | getenv("GIT_COMMITTER_EMAIL"), |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 329 | getenv("GIT_COMMITTER_DATE"), |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 330 | flag); |
Eric W. Biederman | d289d13 | 2005-07-14 18:50:33 -0600 | [diff] [blame] | 331 | } |
Junio C Hamano | 5aeb3a3 | 2010-01-17 13:54:28 -0800 | [diff] [blame] | 332 | |
| 333 | int user_ident_sufficiently_given(void) |
| 334 | { |
| 335 | #ifndef WINDOWS |
| 336 | return (user_ident_explicitly_given & IDENT_MAIL_GIVEN); |
| 337 | #else |
| 338 | return (user_ident_explicitly_given == IDENT_ALL_GIVEN); |
| 339 | #endif |
| 340 | } |
Jeff King | 9597921 | 2012-05-21 19:09:54 -0400 | [diff] [blame] | 341 | |
| 342 | int git_ident_config(const char *var, const char *value, void *data) |
| 343 | { |
| 344 | if (!strcmp(var, "user.name")) { |
| 345 | if (!value) |
| 346 | return config_error_nonbool(var); |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 347 | strbuf_reset(&git_default_name); |
| 348 | strbuf_addstr(&git_default_name, value); |
Jeff King | 9597921 | 2012-05-21 19:09:54 -0400 | [diff] [blame] | 349 | user_ident_explicitly_given |= IDENT_NAME_GIVEN; |
| 350 | return 0; |
| 351 | } |
| 352 | |
| 353 | if (!strcmp(var, "user.email")) { |
| 354 | if (!value) |
| 355 | return config_error_nonbool(var); |
Jeff King | 8587ead | 2012-05-21 19:10:17 -0400 | [diff] [blame] | 356 | strbuf_reset(&git_default_email); |
| 357 | strbuf_addstr(&git_default_email, value); |
Jeff King | 9597921 | 2012-05-21 19:09:54 -0400 | [diff] [blame] | 358 | user_ident_explicitly_given |= IDENT_MAIL_GIVEN; |
| 359 | return 0; |
| 360 | } |
| 361 | |
| 362 | return 0; |
| 363 | } |