blob: d84a78fb26aebbccc0c844dd80f35b4c158d23a1 [file] [log] [blame]
TheCodedProf2a69bd92023-03-02 16:36:32 -05001import Axios from 'axios';
2
3const t = () => { return <></>}
4export default t
5export async function getServerSideProps(ctx) {
6 if(!ctx.params.code) {
7 return {
8 redirect: {
9 destination: '/nucleus/transcript/about',
10 permanent: true
11 }
12 }
13 }
14 let code;
15 try {
16 code = (await Axios.get(`http://localhost:10000/transcript/${ctx.params.code}`))
17 } catch (e) {
18 return {
19 redirect: {
20 destination: '/nucleus/transcript/invalid',
21 permanent: true
22 }
23 }
24 }
25 return {
26 redirect: {
27 destination: `http://api.coded.codes/nucleus/transcript/${ctx.params.code}/human`,
28 permanent: true
29 }
30 }
31}