Re: [PATCH] git-remote-mediawiki: use Git.pm functions for credentials

2013-06-05 Thread Jeff King
On Wed, Jun 05, 2013 at 12:58:00PM +0200, benoit.per...@ensimag.fr wrote:

> From: Benoit Person 
> 
> In 52dce6d, a new credential function was added to Git.pm, based on
> git-remote-mediawiki's functions. The logical follow-up is to use
> those functions in git-remote-mediawiki.
> 
> Signed-off-by: Benoit Person 
> Signed-off-by: Matthieu Moy 

Thanks, this looks correct to me.

-Peff
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] git-remote-mediawiki: use Git.pm functions for credentials

2013-06-05 Thread benoit . person
From: Benoit Person 

In 52dce6d, a new credential function was added to Git.pm, based on
git-remote-mediawiki's functions. The logical follow-up is to use
those functions in git-remote-mediawiki.

Signed-off-by: Benoit Person 
Signed-off-by: Matthieu Moy 
---
 contrib/mw-to-git/git-remote-mediawiki.perl | 66 -
 1 file changed, 9 insertions(+), 57 deletions(-)

diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl 
b/contrib/mw-to-git/git-remote-mediawiki.perl
index 9c14c1f..6672e4c 100755
--- a/contrib/mw-to-git/git-remote-mediawiki.perl
+++ b/contrib/mw-to-git/git-remote-mediawiki.perl
@@ -13,6 +13,7 @@
 
 use strict;
 use MediaWiki::API;
+use Git;
 use DateTime::Format::ISO8601;
 
 # By default, use UTF-8 to communicate with Git and the user
@@ -156,57 +157,6 @@ while () {
 
 ## Functions ##
 
-## credential API management (generic functions)
-
-sub credential_read {
-   my %credential;
-   my $reader = shift;
-   my $op = shift;
-   while (<$reader>) {
-   my ($key, $value) = /([^=]*)=(.*)/;
-   if (not defined $key) {
-   die "ERROR receiving response from git credential 
$op:\n$_\n";
-   }
-   $credential{$key} = $value;
-   }
-   return %credential;
-}
-
-sub credential_write {
-   my $credential = shift;
-   my $writer = shift;
-   # url overwrites other fields, so it must come first
-   print $writer "url=$credential->{url}\n" if exists $credential->{url};
-   while (my ($key, $value) = each(%$credential) ) {
-   if (length $value && $key ne 'url') {
-   print $writer "$key=$value\n";
-   }
-   }
-}
-
-sub credential_run {
-   my $op = shift;
-   my $credential = shift;
-   my $pid = open2(my $reader, my $writer, "git credential $op");
-   credential_write($credential, $writer);
-   print $writer "\n";
-   close($writer);
-
-   if ($op eq "fill") {
-   %$credential = credential_read($reader, $op);
-   } else {
-   if (<$reader>) {
-   die "ERROR while running git credential $op:\n$_";
-   }
-   }
-   close($reader);
-   waitpid($pid, 0);
-   my $child_exit_status = $? >> 8;
-   if ($child_exit_status != 0) {
-   die "'git credential $op' failed with code $child_exit_status.";
-   }
-}
-
 # MediaWiki API instance, created lazily.
 my $mediawiki;
 
@@ -217,22 +167,24 @@ sub mw_connect_maybe {
$mediawiki = MediaWiki::API->new;
$mediawiki->{config}->{api_url} = "$url/api.php";
if ($wiki_login) {
-   my %credential = (url => $url);
-   $credential{username} = $wiki_login;
-   $credential{password} = $wiki_passwd;
-   credential_run("fill", \%credential);
+   my %credential = (
+   'url' => $url,
+   'username' => $wiki_login,
+   'password' => $wiki_passwd
+   );
+   Git::credential(\%credential);
my $request = {lgname => $credential{username},
   lgpassword => $credential{password},
   lgdomain => $wiki_domain};
if ($mediawiki->login($request)) {
-   credential_run("approve", \%credential);
+   Git::credential(\%credential, 'approve');
print STDERR "Logged in mediawiki user 
\"$credential{username}\".\n";
} else {
print STDERR "Failed to log in mediawiki user 
\"$credential{username}\" on $url\n";
print STDERR "  (error " .
$mediawiki->{error}->{code} . ': ' .
$mediawiki->{error}->{details} . ")\n";
-   credential_run("reject", \%credential);
+   Git::credential(\%credential, 'reject');
exit 1;
}
}
-- 
1.8.3.rc3.7.gc2f33ed.dirty

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] git-remote-mediawiki: use git.pm functions for credentials

2013-06-04 Thread Junio C Hamano
benoit.per...@gmail.com writes:

> From: Benoit Person 
>
> In 52dce6d, a new credential function was added to git.pm, based on
> git-remote-mediawiki's functions. The logical follow-up is to use
> those functions in git-remote-mediawiki.
>
> Signed-off-by: Benoit Person 
> Signed-off-by: Matthieu Moy 
> ---
>  contrib/mw-to-git/git-remote-mediawiki.perl | 66 
> -
>  1 file changed, 9 insertions(+), 57 deletions(-)

With s/git.pm/Git.pm/, the above looks perfect.

> @@ -217,22 +167,24 @@ sub mw_connect_maybe {
>   $mediawiki = MediaWiki::API->new;
>   $mediawiki->{config}->{api_url} = "$url/api.php";
>   if ($wiki_login) {
> - my %credential = (url => $url);
> - $credential{username} = $wiki_login;
> - $credential{password} = $wiki_passwd;
> - credential_run("fill", \%credential);
> + my %credential = (
> + 'url' => $url,
> + 'username' => $wiki_login,
> + 'password' => $wiki_passwd
> + );
> + Git::credential \%credential;
>   my $request = {lgname => $credential{username},
>  lgpassword => $credential{password},
>  lgdomain => $wiki_domain};
>   if ($mediawiki->login($request)) {
> - credential_run("approve", \%credential);
> + Git::credential \%credential, 'approve';

The example in perl/Git.pm for =item credential shows the subroutine
call without surrounding parentheses, and that is perfectly valid
Perl, but given that the prevalent style of subroutine calls made in
this file seems to be with them, i.e. subr(arg, arg), you might want
to consider being consistent here (and in the implicit 'fill' call
several lines above, and 'reject' call below).

Thanks.

>   print STDERR "Logged in mediawiki user 
> \"$credential{username}\".\n";
>   } else {
>   print STDERR "Failed to log in mediawiki user 
> \"$credential{username}\" on $url\n";
>   print STDERR "  (error " .
>   $mediawiki->{error}->{code} . ': ' .
>   $mediawiki->{error}->{details} . ")\n";
> - credential_run("reject", \%credential);
> + Git::credential \%credential, 'reject';
>   exit 1;
>   }
>   }
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] git-remote-mediawiki: use git.pm functions for credentials

2013-06-04 Thread benoit . person
From: Benoit Person 

In 52dce6d, a new credential function was added to git.pm, based on
git-remote-mediawiki's functions. The logical follow-up is to use
those functions in git-remote-mediawiki.

Signed-off-by: Benoit Person 
Signed-off-by: Matthieu Moy 
---
 contrib/mw-to-git/git-remote-mediawiki.perl | 66 -
 1 file changed, 9 insertions(+), 57 deletions(-)

diff --git a/contrib/mw-to-git/git-remote-mediawiki.perl 
b/contrib/mw-to-git/git-remote-mediawiki.perl
index 9c14c1f..9fb281e 100755
--- a/contrib/mw-to-git/git-remote-mediawiki.perl
+++ b/contrib/mw-to-git/git-remote-mediawiki.perl
@@ -13,6 +13,7 @@
 
 use strict;
 use MediaWiki::API;
+use Git;
 use DateTime::Format::ISO8601;
 
 # By default, use UTF-8 to communicate with Git and the user
@@ -156,57 +157,6 @@ while () {
 
 ## Functions ##
 
-## credential API management (generic functions)
-
-sub credential_read {
-   my %credential;
-   my $reader = shift;
-   my $op = shift;
-   while (<$reader>) {
-   my ($key, $value) = /([^=]*)=(.*)/;
-   if (not defined $key) {
-   die "ERROR receiving response from git credential 
$op:\n$_\n";
-   }
-   $credential{$key} = $value;
-   }
-   return %credential;
-}
-
-sub credential_write {
-   my $credential = shift;
-   my $writer = shift;
-   # url overwrites other fields, so it must come first
-   print $writer "url=$credential->{url}\n" if exists $credential->{url};
-   while (my ($key, $value) = each(%$credential) ) {
-   if (length $value && $key ne 'url') {
-   print $writer "$key=$value\n";
-   }
-   }
-}
-
-sub credential_run {
-   my $op = shift;
-   my $credential = shift;
-   my $pid = open2(my $reader, my $writer, "git credential $op");
-   credential_write($credential, $writer);
-   print $writer "\n";
-   close($writer);
-
-   if ($op eq "fill") {
-   %$credential = credential_read($reader, $op);
-   } else {
-   if (<$reader>) {
-   die "ERROR while running git credential $op:\n$_";
-   }
-   }
-   close($reader);
-   waitpid($pid, 0);
-   my $child_exit_status = $? >> 8;
-   if ($child_exit_status != 0) {
-   die "'git credential $op' failed with code $child_exit_status.";
-   }
-}
-
 # MediaWiki API instance, created lazily.
 my $mediawiki;
 
@@ -217,22 +167,24 @@ sub mw_connect_maybe {
$mediawiki = MediaWiki::API->new;
$mediawiki->{config}->{api_url} = "$url/api.php";
if ($wiki_login) {
-   my %credential = (url => $url);
-   $credential{username} = $wiki_login;
-   $credential{password} = $wiki_passwd;
-   credential_run("fill", \%credential);
+   my %credential = (
+   'url' => $url,
+   'username' => $wiki_login,
+   'password' => $wiki_passwd
+   );
+   Git::credential \%credential;
my $request = {lgname => $credential{username},
   lgpassword => $credential{password},
   lgdomain => $wiki_domain};
if ($mediawiki->login($request)) {
-   credential_run("approve", \%credential);
+   Git::credential \%credential, 'approve';
print STDERR "Logged in mediawiki user 
\"$credential{username}\".\n";
} else {
print STDERR "Failed to log in mediawiki user 
\"$credential{username}\" on $url\n";
print STDERR "  (error " .
$mediawiki->{error}->{code} . ': ' .
$mediawiki->{error}->{details} . ")\n";
-   credential_run("reject", \%credential);
+   Git::credential \%credential, 'reject';
exit 1;
}
}
-- 
1.8.3.rc3.7.gc2f33ed.dirty

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html