| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- function getAxios(team, token) {
- return require('axios').create({
- baseURL: `https://${team}.qiita.com/api/v2`,
- headers: {
- 'Content-Type': 'application/json',
- 'X-Requested-With': 'XMLHttpRequest',
- 'authorization': `Bearer ${token}`
- },
- responseType: 'json'
- });
- }
- /**
- * the service class of restQiitaAPI
- * Qiita API v2 documant https://qiita.com/api/v2/docs
- */
- class RestQiitaAPIService {
- constructor(crowi) {
- this.crowi = crowi;
- this.config = crowi.getConfig();
- this.team = this.config.crowi['importer:qiita:team_name'];
- this.token = this.config.crowi['importer:qiita:access_token'];
- this.axios = getAxios(this.team, this.token);
- }
- /**
- * @memberof RestQiitaAPI
- * @param {string} team
- * @param {string} token
- */
- async reset() {
- this.team = this.config.crowi['importer:qiita:team_name'];
- this.token = this.config.crowi['importer:qiita:access_token'];
- this.axios = getAxios(this.team, this.token);
- }
- /**
- * get Qiita API
- * @memberof RestQiitaAPI
- * @param {string} path
- */
- async restAPI(path) {
- return this.axios.get(path)
- .then(function(res) {
- const data = res.data;
- const total = res.headers['total-count'];
- return {data, total};
- });
- }
- /**
- * get Qiita user
- * @memberof RestQiitaAPI
- */
- async getQiitaUser() {
- const res = await this.restAPI('/users');
- const user = res.data;
- if (user.length > 0) {
- return user;
- }
- }
- /**
- * get Qiita pages
- * @memberof RestQiitaAPI
- * @param {string} pageNum
- * @param {string} per_page
- */
- async getQiitaPages(pageNum, per_page) {
- const res = await this.restAPI(`/items?page=${pageNum}&per_page=${per_page}`);
- const pages = res.data;
- const total = res.total;
- if (pages.length > 0) {
- return {pages, total};
- }
- }
- }
- module.exports = RestQiitaAPIService;
|