Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EveAPI's Character Skill Queue Job not resistant to ESI Bugs #911

Open
tehraven opened this issue Jul 12, 2024 · 0 comments
Open

EveAPI's Character Skill Queue Job not resistant to ESI Bugs #911

tehraven opened this issue Jul 12, 2024 · 0 comments

Comments

@tehraven
Copy link

  • Problem: Whats wrong?

The skill Queue job has a update-all, delete-the-rest approach to updating the Database:
https://github.com/eveseat/eveapi/blob/5.0.x/src/Jobs/Skills/Character/Queue.php#L101-L103

This is based on the assumption that when you query for Character Skill Queues, the first record will be queue_position zero.

That is not always true

It appears that when a user in-game removes skills, sometimes EVE just removes the rows without reshuffling the items queue_position whatsoever. This was verified on three users, two of which were able to force Eve to reshuffle by adding a new skill to the queue. Example when still broken, user only has one skill in queue, currently active and training: (see screenshot section)

The result was that a user's queue records in the SeAT DB would start with:

Queue Item 1,
Queue Item 2,
Queue Item 3

And if only Queue Item 3 comes back from the API, you would still have

Queue Item 1,
Queue Item 2,
Queue Item 3
... because the delete query would delete everything larger than 3.

  • Expected: What did you expect to happen?

I expect the Queue job to update the table and have all the rows no longer in ESI deleted (cleaned up)

  • Logs / Screenshots / Proof: The more information you give the better!

image

  • Version Info: PHP Version, SeAT Version, Operating System etc.

SeAT V5
all updated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant