aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'http-verbs' into cockroachBryan Newbold2018-09-096-648/+1502
|\ | | | | | | | | | | | | | | Manually merged conflicts: rust/migrations/2018-05-12-001226_init/up.sql rust/src/api_server.rs rust/src/database_schema.rs
| * parallelize abstracts insertionBryan Newbold2018-09-091-15/+20
| |
| * TODO and commentBryan Newbold2018-09-071-1/+0
| |
| * fixes after autoaccept mergeBryan Newbold2018-09-074-49/+41
| |
| * fmtBryan Newbold2018-09-075-207/+364
| |
| * Merge branch 'autoaccept' into http-verbsBryan Newbold2018-09-072-3/+34
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Started resolving conflicts in: TODO notes/cloud_instances.txt rust/fatcat-api/README.md rust/src/api_server.rs
| | * editgroup IDs are fcid, not uuidBryan Newbold2018-08-301-1/+1
| | |
| | * editgroup parameter for batch insertsBryan Newbold2018-08-302-6/+21
| | |
| | * implement autoacceptBryan Newbold2018-08-202-20/+46
| | | | | | | | | | | | | | | | | | Need to review: - changelog creation - clobbering of existing editgroup flag
| * | fix/replace a lot of expect() callsBryan Newbold2018-09-072-47/+46
| | |
| * | mostly done with CRUD refactorBryan Newbold2018-09-073-625/+745
| | | | | | | | | | | | One failing test in this commit.
| * | batch inserts by defaultBryan Newbold2018-09-073-27/+95
| | |
| * | generic create (multiple inserts)Bryan Newbold2018-09-071-26/+24
| | | | | | | | | | | | | | | | | | | | | This does away entirely with the fancy CTE-based custom SQL inserts. Because performance is currently only important for batch inserts, I think this is acceptable, and will refactor to do batch inserts as actual batch SQL operations next.
| * | crud: refactor to split out rev insertBryan Newbold2018-09-071-43/+51
| | |
| * | major CRUD refactorBryan Newbold2018-09-074-85/+302
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the start of a large refactor to move all entity CRUD (create, read, update, delete) model/database code into it's own file. HACKING has been updated with an overview of what happens in each file. Next steps: - split rev (and sub-table) insertion in to db_rev_insert and make create/update generic - inserts should be batch (vector) by default - move all other entities into this new trait framework - bypass api_server wrappers and call into CRUD from api_wrappers for entity ops (should be a big cleanup)
| * | skeleton create/delete endpoints for worksBryan Newbold2018-09-062-2/+228
| | | | | | | | | | | | Other entities just stubs
| * | correct EditgroupAlreadyAccepted responseBryan Newbold2018-08-314-5/+14
| |/
| * use index_val, not index, in SQL schemaBryan Newbold2018-08-203-12/+12
| |
| * add NOT NULL to other lookupsBryan Newbold2018-08-191-0/+6
| |
| * add hints for postgres query plannerBryan Newbold2018-08-191-0/+6
| |
| * ORCIDs can end in X characterBryan Newbold2018-08-161-1/+9
| |
* | cockroach: refactor custom insert queries into dieselBryan Newbold2018-08-171-100/+95
| | | | | | | | | | | | | | | | | | | | | | Basically reverts some big speedups around "single query inserts" (to ident, rev, and edit tables concurrently), because cockroach doesn't support "multiple uses of CTEs" (table expressions). There's probably a way to rewrite using subqueries instead. Also, would actually want to refactor and use NewRow structs instead of tuples, I think.
* | cockroach: catch remaining JSONB stuffBryan Newbold2018-08-171-7/+7
| |
* | cockroach: don't auto-wipe tables in tests (for now)Bryan Newbold2018-08-142-8/+8
| | | | | | | | | | This fixes the OID type 114 bug; schema had been updated, but didn't update insert statements/casts.
* | cockroach: try JSONB over JSONBryan Newbold2018-08-141-6/+6
| |
* | revert role_val changeBryan Newbold2018-08-143-6/+6
| |
* | index_val and role_valBryan Newbold2018-08-143-17/+17
|/
* trivial implementation of core_id field on releasesBryan Newbold2018-08-143-3/+7
|
* remove accidental printlnBryan Newbold2018-07-261-1/+0
|
* refactoring; expand keyword implBryan Newbold2018-07-252-45/+82
|
* big transaction/conn refactorBryan Newbold2018-07-253-236/+189
|
* have get_editgroup take optional connBryan Newbold2018-07-252-10/+19
|
* actually ON CONFLICT abstract creation (and test)Bryan Newbold2018-07-251-3/+3
|
* abstracts; more testsBryan Newbold2018-07-254-41/+93
|
* pull in sha1 library (for abstracts)Bryan Newbold2018-07-251-0/+1
|
* more external ident handlingBryan Newbold2018-07-254-10/+144
|
* whole bunch of clippy fixesBryan Newbold2018-07-245-72/+73
|
* partial implementation of new API featuresBryan Newbold2018-07-243-60/+195
|
* oops, forgot revisions should be UUIDBryan Newbold2018-07-202-6/+6
|
* editor_id and editgroup_id as idents; revisions as raw UUIDBryan Newbold2018-07-205-106/+109
|
* format InvalidFatcatId errors in API response (hack)Bryan Newbold2018-07-201-4/+8
|
* rust: base32 encoded identsBryan Newbold2018-07-205-63/+79
|
* entity ident (fcid) UUID helpersBryan Newbold2018-07-201-0/+21
| | | | | Could perhaps implement these as impl methods on the uuid::Uuid struct instead?
* refactor massive rust api_server into api_wrappersBryan Newbold2018-06-303-439/+468
| | | | | The wrappers file contains the "glue" code to map to fatcat-api (openapi2 codegen) function signatures.
* generic changelog endpointsBryan Newbold2018-06-302-7/+79
|
* respect more flag for stats endpointBryan Newbold2018-06-301-23/+30
|
* fix release ref and contrib orderingBryan Newbold2018-06-301-0/+2
|
* add remaining history endpointsBryan Newbold2018-06-301-82/+105
|
* history for container entitiesBryan Newbold2018-06-302-1/+81
|
* refactor changelog entry spec structureBryan Newbold2018-06-301-2/+2
|