-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
130 lines (115 loc) · 5.29 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
const { createApi } = require('unsplash-js');
const fs = require('fs');
const core = require('@actions/core');
const { exit } = require('process');
const exec = require('@actions/exec');
const github = require('@actions/github');
// Get the owner and repo from the context
const { owner, repo } = github.context.repo;
// Get the inputs from the workflow file
const UNSPLASHTOKEN = core.getInput('unsplash_token');
const GITHUBTOKEN = core.getInput('github_token');
const TEMPLATE = core.getInput('template');
const ORIENTATION = core.getInput('orientation');
const QUERY = core.getInput('query');
const CONTENTFILTER = core.getInput('content_filter');
const COLLECTIONS = core.getInput('collections');
const TOPICS = core.getInput('topics');
// Initialize Unsplash API
const unsplash = createApi({
accessKey: UNSPLASHTOKEN,
});
let templateFile;
try {
templateFile = fs.readFileSync(TEMPLATE, 'utf8');
} catch (err) {
console.error(err);
exit(1);
}
// Get random image from Unsplash
unsplash.photos.getRandom({
collections: COLLECTIONS,
topics: TOPICS,
content_filter: CONTENTFILTER,
orientation: ORIENTATION,
query: QUERY,
})
.then(data => {
core.debug(data)
// Get data from response
const URL = data.response.urls.regular;
const HTMLURL = data.response.links.html;
const DESC = data.response.description || '';
const ALTDESC = data.response.alt_description || '';
// Social data
const NAME = data.response.user.name || 'Unknown';
const PORTFOLIOURL = data.response.user.social.portfolio_url;
const INSTAGRAM = data.response.user.social.instagram_username
? `[Instagram](https://instagram.com/${data.response.user.social.instagram_username})`
: '';
const PORTFOLIO = data.response.user.social.portfolio_url
? `[portfolio](${data.response.user.social.portfolio_url})`
: '';
const TWITTER = data.response.user.social.twitter_username
? `[Twitter](https://twitter.com/${data.response.user.social.twitter_username})`
: '';
const PAYPAL = data.response.user.social.paypal_email
? `[Paypal](mailto:${data.response.user.social.paypal_email})`
: '';
const SOCIALS = [INSTAGRAM, PORTFOLIO, TWITTER, PAYPAL].filter(Boolean);
// Construct a string that looks like this: "instagram / portfolio / twitter"
let SOCIALSSTRING = SOCIALS.reduce((finalStr, ele, index, arr)=> {
if (index < arr.length - 1) {
return finalStr + ele + " / ";
} else {
return finalStr + ele;
}
}, "");
// Camera/EXIF data
const MODEL = data.response.exif.model;
const EXPOSURETIME = data.response.exif.exposure_time;
const APERTURE = data.response.exif.aperture;
const FOCALLENGTH = data.response.exif.focal_length;
const ISO = data.response.exif.iso;
// Location data
const LOCATION = data.response.location.name || 'Unknown';
const COUNTRY = data.response.location.country;
const LATITUDE = data.response.location.position.latitude;
const LONGITUDE = data.response.location.position.longitude;
const GOOGLEMAPS = LATITUDE && LONGITUDE ? `[Google Maps](https://www.google.com/maps/search/?api=1&query=${LATITUDE},${LONGITUDE})` : '';
const GOOGLEMAPSSTREETVIEW = LATITUDE && LONGITUDE ? `[Google Maps street view](https://www.google.com/maps/@?api=1&map_action=pano&viewpoint=${LATITUDE},${LONGITUDE})` : '';
// Replace variables in template
const result = templateFile
.replace(/{{ unsplash-raw-url }}/g, URL)
.replace(/{{ unsplash-page-url }}/g, HTMLURL)
.replace(/{{ unsplash-description }}/g, DESC)
.replace(/{{ unsplash-alt-description }}/g, ALTDESC)
.replace(/{{ unsplash-name }}/g, NAME)
.replace(/{{ model }}/g, MODEL)
.replace(/{{ exposure-time }}/g, EXPOSURETIME)
.replace(/{{ aperture }}/g, APERTURE)
.replace(/{{ focal-length }}/g, FOCALLENGTH)
.replace(/{{ iso }}/g, ISO)
.replace(/{{ location }}/g, LOCATION)
.replace(/{{ country }}/g, COUNTRY)
.replace(/{{ latitude }}/g, LATITUDE)
.replace(/{{ longitude }}/g, LONGITUDE)
.replace(/{{ unsplash-portfolio-url }}/g, PORTFOLIOURL)
.replace(/{{ socials }}/g, SOCIALSSTRING)
.replace(/{{ google-maps }}/g, GOOGLEMAPS)
.replace(/{{ google-maps-street-view }}/g, GOOGLEMAPSSTREETVIEW);
// Write processed template to README.md
try {
fs.writeFileSync('README.md', result);
} catch (error) {
console.error(error);
}
}).then(async () => {
// Push to GitHub
await exec.exec('git', ['config', '--global', 'user.email', 'actions@github.com']);
await exec.exec('git', ['config', '--global', 'user.name', 'GitHub Action']);
await exec.exec('git', ['add', 'README.md']);
await exec.exec('git', ['commit', '-m', 'Update README.md with unsplash image data']);
await exec.exec('git', ['push', `https://${GITHUBTOKEN}@github.com/${owner}/${repo}.git`]);
})
.catch(error => console.error(error));