* [PATCH] lei_store: use getpwuid and hostname for ident
@ 2021-04-05 20:38 Eric Wong
0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-04-05 20:38 UTC (permalink / raw)
To: meta
It's nicer in case a user transfers lei/store across machines
and wants a way to track when/where they imported something.
---
lib/PublicInbox/LeiStore.pm | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/lib/PublicInbox/LeiStore.pm b/lib/PublicInbox/LeiStore.pm
index 094e1555..f8371abf 100644
--- a/lib/PublicInbox/LeiStore.pm
+++ b/lib/PublicInbox/LeiStore.pm
@@ -63,8 +63,16 @@ sub git_ident ($) {
my $rdr = {};
open $rdr->{2}, '>', '/dev/null' or die "open /dev/null: $!";
chomp(my $i = $git->qx([qw(var GIT_COMMITTER_IDENT)], undef, $rdr));
- $i =~ /\A(.+) <([^>]+)> [0-9]+ [-\+]?[0-9]+$/ ? ($1, $2) :
- ('lei user', 'x@example.com')
+ $i =~ /\A(.+) <([^>]+)> [0-9]+ [-\+]?[0-9]+$/ and return ($1, $2);
+ my ($user, undef, undef, undef, undef, undef, $gecos) = getpwuid($<);
+ ($user) = (($user // $ENV{USER} // '') =~ /([\w\-\.\+]+)/);
+ $user //= 'lei-user';
+ ($gecos) = (($gecos // '') =~ /([\w\-\.\+ \t]+)/);
+ $gecos //= 'lei user';
+ require Sys::Hostname;
+ my ($host) = (Sys::Hostname::hostname() =~ /([\w\-\.]+)/);
+ $host //= 'localhost';
+ ($gecos, "$user\@$host")
}
sub importer {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-04-05 20:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-05 20:38 [PATCH] lei_store: use getpwuid and hostname for ident Eric Wong
unofficial mirror of meta@public-inbox.org
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://yhetil.org/meta
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V1 meta meta/ https://yhetil.org/meta \
meta@public-inbox.org
public-inbox-index meta
Example config snippet for mirrors.
Newsgroups are available over NNTP:
nntp://news.yhetil.org/yhetil.mail.public-inbox.meta
nntp://news.public-inbox.org/inbox.mail.public-inbox.meta
nntp://news.gmane.io/gmane.mail.public-inbox.general
AGPL code for this site: git clone http://ou63pmih66umazou.onion/public-inbox.git