summaryrefslogtreecommitdiff
path: root/lib/githubexplorer/Profile.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-01-23 19:36:24 +0100
committerfranck cuny <franck@lumberjaph.net>2010-01-23 19:36:24 +0100
commita7cc690ced15e1a0191d27034006bfb17a0deeb5 (patch)
tree6cef1a2e07727e8cd5249764f461222073e8211a /lib/githubexplorer/Profile.pm
downloadgithub-explorer-a7cc690ced15e1a0191d27034006bfb17a0deeb5.tar.gz
basic github crawler using api
Diffstat (limited to 'lib/githubexplorer/Profile.pm')
-rw-r--r--lib/githubexplorer/Profile.pm59
1 files changed, 59 insertions, 0 deletions
diff --git a/lib/githubexplorer/Profile.pm b/lib/githubexplorer/Profile.pm
new file mode 100644
index 0000000..f580f79
--- /dev/null
+++ b/lib/githubexplorer/Profile.pm
@@ -0,0 +1,59 @@
+package githubexplorer::Profile;
+use 5.010;
+use Moose::Role;
+use Net::GitHub::V2::Users;
+
+sub fetch_profile {
+ my ( $self, $login, $depth ) = @_;
+
+ my $profile = $self->_profile_exists($login);
+
+ say "fetch profile for $login ($depth)...";
+ sleep(1);
+ my $github = Net::GitHub::V2::Users->new(
+ owner => $login,
+ login => $self->api_login,
+ token => $self->api_token,
+ );
+ sleep(2);
+
+ if ( !$profile ) {
+ $profile = $self->_create_profile( $login, $github->show, $depth );
+ if ( $self->with_repo ) {
+ foreach my $repo ( @{ $github->list } ) {
+ $self->fetch_repo( $profile, $repo->{name} );
+ }
+ }
+ sleep(1);
+ }
+ my $followers = $github->followers();
+ my $local_depth = $depth + 1;
+ return $profile if $local_depth > 3;
+ foreach my $f (@$followers) {
+ my $p = $self->fetch_profile( $f, $depth + 1 );
+ next unless $p;
+ $self->schema->resultset('Follow')
+ ->create(
+ { id_following => $profile->id, id_follower => $p->id } );
+ }
+ $profile;
+}
+
+sub _profile_exists {
+ my ( $self, $login ) = @_;
+ my $profile
+ = $self->schema->resultset('Profiles')->find( { login => $login } );
+ return $profile;
+}
+
+sub _create_profile {
+ my ( $self, $user_name, $profile, $depth ) = @_;
+
+ $profile->{depth} = $depth;
+
+ my $profile_rs = $self->schema->resultset('Profiles')->create($profile);
+ say $profile_rs->login."'s profile created";
+ return $profile_rs;
+}
+
+1;