A privacy respecting frontend for Pixiv (WIP)
Go to file
2023-06-05 13:01:42 +07:00
configs Optimization: proxy images through template functions instead of dealing with it directly 2023-06-01 20:02:19 +07:00
handler Feature: add comments for artwork page (currently limited to 30) 2023-06-04 21:59:51 +07:00
models Feature: add comments for artwork page (currently limited to 30) 2023-06-04 21:59:51 +07:00
template Feature: parse emojis for comments 2023-06-05 13:01:42 +07:00
views Feature: add comments for artwork page (currently limited to 30) 2023-06-04 21:59:51 +07:00
.gitignore Feature: Added config file 2023-05-18 20:18:44 +07:00
:w Feature: parse emojis for comments 2023-06-05 13:01:42 +07:00
config.example.yml Optimization: proxy images through template functions instead of dealing with it directly 2023-06-01 20:02:19 +07:00
go.mod listing recommended works (first feature?) 2023-05-13 17:03:13 +07:00
go.sum listing recommended works (first feature?) 2023-05-13 17:03:13 +07:00
LICENSE License: switch to AGPL3 2023-05-15 07:28:10 +07:00
main.go Feature: parse emojis for comments 2023-06-05 13:01:42 +07:00
README.md README: update 2023-06-04 22:03:03 +07:00

PixivFE

A privacy-respecting alternative front-end for Pixiv that doesn't suck

Get it on Codeberg

What is this?

This is an alternative front-end for Pixiv, also my second Go project, so the code may not look good for those who are experienced :(

Why? Because nobody made a front-end for Pixiv that I like.

Note that this project is still under its preparation stage.

Previews

Homepage: currently contains recommended works, daily rankings, pixivision's articles and newest works on Pixiv. Route: / Previously this was made possible by using an external API. Currently, I had switched to Pixiv's ajax API, so the index page won't be available for now. Homepage Homepage

Artwork's page: informations about the artwork, recent artworks by the artist and related artworks. Route: /artworks/<id> (id for the preview: 107664519) Artwork Artwork

User's page: Route: /user/<id> (id for the preview: 11065404) User

Installation

This project only depends on one Go library: Gin Run these commands below, then access the site on localhost:8080

git clone https://codeberg.org/VnPower/pixivfe.git
cd pixivfe
go get -u github.com/gin-gonic/gin
cp config.example.yml config.yml # config file

You will have to add your own PHPSESSID in order to run. Go to config.yml for more details.

Instances

Official instance: https://pixivfe.exozy.me

I don't know how to write a self-host guide so you will have to wait :P

To-do

  • Base
    • Navigation bar
    • Searching
    • Pagination
    • Configuration file
    • Write a real independent API
  • Index page
    • Recommended artworks
    • Daily rankings
    • Spotlight (pixivision)
    • Discovery
      • Artworks
      • Users
    • Newest by all
    • Trending tags
    • Switcher (illusts/mangas)
  • Single pages
    • User
    • Artwork
    • Spotlight
  • List pages
    • Recommended artworks
    • Daily rankings
    • Discovery
      • Artworks
      • Users
    • Newest by all
    • Search results
    • Switcher
  • Settings
    • Login
    • Local history
    • Toggling R-18, R-18G, AI
    • Custom pximg proxy
  • Optimization
    • Split web components into smaller templates
    • Clean the models + JSON
    • Navigation between pages
    • Lazy load images
    • Better error handling
    • Fully proxy images from Pixiv

License

MIT AGPL3