Code Monkey home page Code Monkey logo

evestructures's People

Contributors

dependabot[bot] avatar jamiew0w avatar joejenniges avatar skiedude avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

evestructures's Issues

Cloned your website

Hello skiedude. As you suggested on your website, I cloned your repo to have our own structure notifications. They work, yet I do have a minor issue. When I click the "Test" button for webhooks, I land on an "Whoops. Something went wrong" page. However, the actual notifcations come thru. Any suggestions?

I'd also like to know if you intend to take the project up again or if you would ok with me hosting it publicly.

You can contact me either here or ingame as "Jesco".

Cheers.

Login Button on Home Page does not use root URL

The Login Button on the Home page does not direct to the SSO login Page correctly.

To fix, Change resources/views/home.blade.php as follows .....

Line 171: <a href="{{url('/sso/login')}}">
Line 172: <img src="{{ asset('/images')}}/small_black_login.png" alt="Login Button" class="pager center-block">

Line 81: <td align="right"><a href="{{url('/fetch')}}/{{$char->character_id}}"><button class="btn btn-default">Fetch</button></a>

Line 126: <td><a href="{{url('/home/structure')}}/{{$str->structure_id}}">{{$str->structure_name}}</a></td>

(Thanks for releasing this btw. Looks Good.)

We failed to pull your rolls

HI there,

this useful helper worked for me on my own page till I 25th of may without any troubles. Now the only response I get is:
Warning! We failed to pull your rolls, please try again later.

Can anyone help me what to do?

My environment:

  • Apache2
  • PHP (tried 5.6, 7.0 and 7.1)
  • MariaDB

Change password

Would be great to give the option to change password. And as it should be used for multiple users this change have to be permitted by an confirmal mail.

[discussion] Database table design issues

Note: These are issues that only become really apparent when adding an Admin back end and trying to manage structures for multiple users.

So there are some problems that appear to make the database a bit bigger than it needs to be, specifically with the "structures" table....

  • Each user has a record for every structure they own
  • Multiple Users may own the same structure
    -- You end up with multiple instances of the same structure, just with different user IDs.
    --- Every duplicated structure has duplicated children for states, services etc.

In the Blade view, the view is reading every structure and then displaying only the structures owned by a user. As the number of structures increases in the database, eventually the view is likely to run out of memory trying to pull every structure.

When trying to admin all the Structures in the database, it's required to group the Structure records by structure id to eliminate the duplicated structures. Which is extra unnecessary work when the database should be doing this.

Suggestion: Link the Users table to the structures table with a HAS_MANY relationship and search for users->structures in the home view

The same issue exists with the structure_services table. Because there are duplicated structures, there are also duplicated structure_services. eliminating the duplicate structures will eliminated the duplicate structure_services. Ditto for structure_states and structure_vuls

PHP7.4 support

Hey Brock,

I'm aware this project is now in 'limited updates' mode but I figured it'd be good to open this issue to ensure the project can (hopefully) remain future-proof.

When using PHP7.4 we're running into this error:

2020-05-23 03:18:06] laravel.ERROR: Trying to access array offset on value of type null {"exception":"[object] (ErrorException(code: 0): Trying to access array offset on value of type null at /var/www/bleh/app/Http/Controllers/WelcomeController.php:12)

As you correctly pointed out it's due to how PHP7.4 handles null values:

 $alert = $alert[0];

I tested with your suggested fix but no luck unfortunately, replacing the above with:

$alert = len($alert) > 0 ? $alert[0] : null;

If you need any further information I'm happy to switch PHP versions and report back with whatever you need. Thanks again for this awesome tool!

Update for /v2/

Upwell 2.0 hit this morning which somewhat completely changed the endpoint /corporation/structures. Update the StructureController and the StructureUpdate Job

No fracture notifications for manual fractures

When we manually fracture the moons before the autofracture happens we do not seem to get a fracture notification on discord an the moon doesnt seem to get added to the fracture_notices table at all. Is there something wrong in our setup or is this a design for some reason?

moonmining prices not being retracted

hello, it seems the prices from the moonmining citadels are no longer being retracted from esi and also i noticed that it doesnt show the moon ores no more

can this be fixed?

SSO changes

As announced here CCP is moving the auth endpoints to V2 and deprecating the old ones.
will this be updated to reflect these changes?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.