0

次のコードを使用して、すべての GitHub Enterprise ユーザーのリストを取得してから、AD に存在しないユーザーを一時停止しようとしています。Suspend 関数は機能しますが、User.Suspended プロパティは常に false を返します。

var searhRequest = new SearchUsersRequest("type:user&page="+pageNumber+"&page_size=100");
                githubUsers = await client.Search.SearchUsers(searhRequest);   

 client.User.Administration.Suspend(userId);
4

1 に答える 1

0

ええ、問題は、最終的にこれが舞台裏で行っている呼び出しがそのデータを返さないときに、戻り値をユーザーとしてキャストしようとしていたことだと思います。回避策として、元の結果を切り上げた後で get user メソッドを呼び出してユーザーを取得しました。

それはおそらくもっとうまくできるかもしれませんが、これが私が今持っているものです

Task<SearchUsersResult> task;
List<User> users = new List<User>();
int page = 1;

do
{
  task = github.Search.SearchUsers(new SearchUsersRequest("type:user&repos:>=0") { Page = page, PerPage = 500 });
  task.Wait();

  users.AddRange(task.Result.Items.ToList<User>());
  page++;
}
while (users.Count < task.Result.TotalCount);

// Get all users by login (this calls the api once for every user you have)
var tasks = users.Select(u => github.User.Get(u.Login));

// Get all unsuspended users
var activeUsers = Task.WhenAll<User>(tasks).Result.Where<User>(u => !u.Suspended).ToList();

呼び出しの結果に「isSuspended」データが含まれていないことに注意してください (フィドラーを使用してローカル エンタープライズ インスタンスからプルされ、サニタイズされます)

{"login":"User1"
"id":45
"avatar_url":"http://github.com/avatars/u/45?"
"gravatar_id":""
"url":"http://github.com/api/v3/users/User1"
"html_url":"http://github.com/User1"
"followers_url":"http://github.com/api/v3/users/User1/followers"
"following_url":"http://github.com/api/v3/users/User1/following{/other_user}"
"gists_url":"http://github.com/api/v3/users/User1/gists{/gist_id}"
"starred_url":"http://github.com/api/v3/users/User1/starred{/owner}{/repo}"
"subscriptions_url":"http://github.com/api/v3/users/User1/subscriptions"
"organizations_url":"http://github.com/api/v3/users/User1/orgs"
"repos_url":"http://github.com/api/v3/users/User1/repos"
"events_url":"http://github.com/api/v3/users/User1/events{/privacy}"
"received_events_url":"http://github.com/api/v3/users/User1/received_events"
"type":"User"
"site_admin":false
"ldap_dn":"CN=User1
OU=CompanyDEVUsers
OU=Users
OU=Company
DC=Company
DC=com"
"score":1.0}
于 2016-06-24T21:38:11.847 に答える