/
Handover of CSESoc Website 2019 to the Future

Handover of CSESoc Website 2019 to the Future

You might be looking for the (F)AQ at the bottom - have a read of that and then the rest of the document. If that doesn’t answer your question feel free to contact me @Gordon Zhong (Unlicensed)

Core tech

  • Frontend: Vue + Vuetify (team angled for this, but imo not necessary)

  • API + Server: Golang (you can view the “api docs” here: https://gawdn.com/api-docs/ - link might eventually break in the future…)

  • Database: MongoDB

Building the project

You need Node.JS and yarn: it might be worth looking into constructing a Dockerfile at this point

  • yarn to install dependencies

  • yarn build - you might need to install the Vue CLI at this point before it runs

  • yarn builds the Vue files to a static bundle in dist/

  • To view the frontend as intended run a web server now e.g. python3 -m http.server 8080, stop this once you want to investigate the API

You will need a running MongoDB server at this point.

  • Different per platform but typically involves running mongod

  • You don’t need to create a DB/collections, the database is schemaless

You need Golang installed at this point

  • cd server/

  • go build

  • A file will be generated (different on different systems typically ./m or similar)

  • Run ./m to start the server on 0.0.0.0:1323 ([::]:1323) - this serves both the API and frontend simultaneously

Showcase vs. deployable

Here are some places that use dummy data for showcase purposes

Showcase

What it should do

Fix

Showcase

What it should do

Fix

`Footer.vue` fetches from a gist to dummy the API

Pull a list of sponsors from the API sponsors/ (replace the gist w/ the actual API URI)

Add GET sponsors/ endpoint

`LoginForm.vue` fetches data from data() as static data

Use the login/ API path (replace the gist w/ the actual API URI)

? (should decide if login is necessary - need to check login code carefully)

Sidebar.vue fetches data from data() as static data

Use categories/ API path, handle icons and routes

Need to update categories to have icons(?) and route (same w/ posts)

ContentPage.vue uses dummy data

Accept data from the API posts/ path, should be a generic page w/ content on it

Use a fetch call

Home.vue uses a variety of dummy data

Use actual API endpoints - you can read the gists to figure out what they vaguely should return

Replace API endpoints;

Go serves static assets and API

static assets are served using a proper file server e.g nginx - you can test using python’s inbuilt http.server

Decouple the HTTP server and the API from each other

Home.vue media slider is broken

Show a gallery of images (intended for social images) but could be anything

because of the dummy data used all the images are now broken - once you use real data it’ll show

Simple topology

Summary of code (file by file)

Directory/file

What was the intention?

What is the current state?

Directory/file

What was the intention?

What is the current state?

public/

Static files used by Vue

Holds wrapper on all Vue views

server/

Go files that serve the web server and the API

 

server/category.go

Website category code:
A category was intended to be a grouping of posts (i.e. a section in the sidebar)

https://gawdn.com/api-docs/

server/go.mod

File that stores Go modules

https://blog.golang.org/using-go-modules

server/go.sum

Auto-generated lock file for Go modules

https://blog.golang.org/using-go-modules

server/login.go

Log into the website using LDAP authentication (UNSW zID login) - avoiding rolling own auth (never properly established if this was necessary beyond admins logging in) - potential use for merch? voting?

https://www.tldp.org/HOWTO/LDAP-HOWTO/whatisldap.html

 

server/post.go

Everything is a post:

Events are posts
”Content” pages are posts etc.

Groups of posts have different “views” avaliable to them e.g. viewing as a list, as a grid etc.

Posts can appear in menus under their respective category (section)

https://gawdn.com/api-docs/

server/server.go

Serves /dist/ (frontend) and the API

Can serve the frontend and API (connecting to the MongoDB database) including static assets

At the moment API isn’t prefixed (it really should be i.e. /api/v1/post instead of /post

Holds the API calls themselves i.e. handling the query parameters which calls to the modules - it was intentionally designed this way to keep the server-level cohesive - and decoupled from the underlying DB logic

server/sponsor.go

Handles sponsor related database code

https://gawdn.com/api-docs/

services/

Holds the Dockerfiles for the project

Incomplete, doesn’t actually build the project

 

src/assets/

Holds static assets

 

src/components

Holds Vue components (reusable parts)

ListComponent
Slider
NavGrid

are all ways to show posts

 

.eslintrc.js

Provides linting to the Vue side of the project - would highly recommend setting up your IDE to automatically run the linter as you go

 

CONTRIBUTING.md

The branch structure we used

 

Preparation for deployment

(F)AQ

  • Why is the HTML, CSS and JS mixed? Isn’t that violating separation of concerns?
    Keeping them together (can) create more cohesive reusable components - See the official philosophy here: https://vuejs.org/v2/guide/single-file-components.html

  • Why are there so many views? Why aren’t these structured into folders?
    Because they aren’t intended to be used - they were there for showcase purposes, the original intention is to have a content page and maybe two or three very special pages e.g. the Home page which deserve their own view

  • Who can I blame for all the messy code?
    Ultimately me (@Gordon Zhong (Unlicensed)) - if you don’t know why something is done that way, feel free to ask me and if I don’t know, don’t feel the need to keep it! The code that was written was by complete beginners so by no means is it best practice - even though we did make many important design decisions to get closer.

  • Should I rewrite the code?
    This is something that is asked every year:
    - https://github.com/csesoc/csesoc-website
    - https://github.com/csesoc/csesoc-website-v2
    - https://github.com/csesoc/csesoc-website-v2-old
    - https://github.com/csesoc/csesoc.unsw.edu.au

    The answer is ultimately up to you but remember programming is not just about code, it’s about design and those decisions will always take longer than you think.