本文首发于我的Github博客
本文是star-history项目源码阅读的第一篇文章,会包含:
本次对代码的分析基于Commit - first commit deecd92 timqian
首先说明,本文作者并非项目作者,各种介绍和分析,如有不当,还请谅解。
star-history项目(体验地址)是一个用于统计github项目获得star历史的组件,包括web app网页版本和chrome extension版本
产生这个项目的原因,是Github官方并没有提供查看项目star历史的功能
Github官方提供了一系列REST API(现在有向graphql上迁移的趋势),通过REST API,可以获得许多Github上的信息,以此为基础,我们可以构建各式各样的APP,star-history这个项目也是这样建立起来的
Github虽然没有提供直接查看项目star历史的功能,但是却提供了stargazers接口,这个接口有两种形式
这二者共用同一个rest url,不同的是:
方法2需要在HTTP请求头中加入
Accept: application/vnd.github.v3.star+json
其rest url和返回的json格式分别是
GET /repos/:owner/:repo/stargazers
# 没有时间
[
{
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
]
GET /repos/:owner/:repo/stargazers
Header:
Accept: application/vnd.github.v3.star+json
# 有star时间
[
{
"starred_at": "2011-01-16T19:06:43Z",
"user": {
"login": "octocat",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
}
}
]
对于stargazers接口,一个仓库很可能有数万甚至数十万个用户star过,如果我们在一次请求
GET /repos/:owner/:repo/stargazers
中,就将所有的信息全部都拿出来,会导致:
为此,Github的很多API都引入了分页机制
分页机制中,比较重要的有几点:
我们先来看看Github的REST API是如何接受和提供分页信息的
对于每一个url,我们可以在后面加上page
和per_page
参数:
per_page
参数指定了一页上有多少个资源
page
参数指定了需要拿哪一页的资源在HTTP响应中,Github接口加入一个响应头Link
,这个响应头的样式大概是
# 注意这个请求没有加上page参数,也能获得Link响应头
GET https://api.github.com/search/code?q=addClass+user%3Amozilla
# HTTP响应的响应头
Link: <https://api.github.com/search/code?q=addClass+user%3Amozilla&page=15>; rel="next",
<https://api.github.com/search/code?q=addClass+user%3Amozilla&page=34>; rel="last",
<https://api.github.com/search/code?q=addClass+user%3Amozilla&page=1>; rel="first",
<https://api.github.com/search/code?q=addClass+user%3Amozilla&page=13>; rel="prev"
其中rel
表示的是url和当前url的关系:
prev
,前一页的urlnext
,下一页的urllast
,最后一页的url,也就是总页数first
,第一页的url所以我们之前的数个疑问就可以得到解答
page
参数进行请求,而后通过响应头,提取出last
对应的url中的page
参数即可page
参数就是当前页数next
对应的url中的page
参数是下一页per_page
参数,就可以自行设置(注意可能会有最大值限制)page
参数了解了Github的stargazers接口及分页策略,我们就可以来分析一下获取star历史的方法:
这样来看,基本上是没错的,但是还要考虑一点
如果一个仓库有数千数万数十万star,我们就要绘制数千数万数十万的点吗?
可以当然是可以的,但是这么做,对于高star的项目,内存和网络消耗过大,处理时间过长,项目初期,不利于我们开发和调试
所以我们可以利用分页机制进行取样
比如,我们选定取样点数为20,那么,
上面描述的是如何取样,那么取样与分页有什么关系呢?
那就是——我们不需要获取总star数目,我们只需要获取总页数
事实上,项目代码中也是这么操作的(事实上刚才的思路是我从代码中倒推出来的,尬笑)
generateUrls.js
中
const getConfig = {
headers: {
Accept: 'application/vnd.github.v3.star+json',
},
};
export default async function(repo) {
const initUrl = `https://api.github.com/repos/${repo}/stargazers`;
const res = await axios.get(initUrl, getConfig).catch(e => {
//...
})
//
}
这表明我们使用的是stargazers的带时间的接口
const link = res.headers.link;
if (!link) {
//...
} else {
const pageNumArray = /next.*?page=(\d*).*?last/.exec(link);
const pageNum = pageNumArray[1];
let samplePageUrls = [];
let pageIndexes = [];
if (pageNum <= sampleNum) {
for (let i = 2; i <= pageNum; i++) {
pageIndexes.push(i);
samplePageUrls.push(initUrl + '?page=' + i);
}
} else {
for (let i = 1; i < sampleNum; i++) {
let pageIndex = Math.round(i / sampleNum * pageNum);
pageIndexes.push(pageIndex);
samplePageUrls.push(initUrl + '?page=' + pageIndex);
}
}
//...
return {
samplePageUrls, pageIndexes,
};
}
显然这一段代码是通过响应头Link
,使用正则表达式提取出总页数,然后取样sampleNum
个点
getStarHistory.js
中
export default async function(repo) {
const {
samplePageUrls, pageIndexes
} = await generateUrls(repo).catch(e => {
console.log(e); // throw don't work
});
const getArray = samplePageUrls.map(url => axios.get(url, getConfig));
const resArray = await Promise.all(getArray).catch(e => {
console.log(e); // throw don't work
});
const starHistory = pageIndexes.map((p, i) => {
return {
date: resArray[i].data[0].starred_at.slice(0, 10),
starNum: 30 * (p - 1),
};
});
console.log(starHistory);
return starHistory;
}
这一段代码,
generateUrls.js
的接口获取所有采样的url接口,而后进行请求这样,就得到了一个项目的star历史