I was going to keep a running list of grievances in a Word document but I'll just do it here instead. Not evening touching on the user experience aspect of it, here are just a few of the infuriating issues that you WILL encounter if you touch the API:
- Uncatchable COM exceptions.
- Instead of using .NET generic collections they have their own nimrod collections that don't even have basic methods you would think are intuitive, eg:
UserList.Contains(user).
- The aforementioned collections throw COM exceptions when you make even the slightest mistake, like trying to delete a user that doesn't exist from a user collection.
- If you are lucky enough to get a catchable exception you'll end up with a helpful error message like "Value does not fall within expected range."
- Important functionality such as telling it not to bind MS Word Document metadata properties to a list are controlled by obscure members called things like
ParserEnabled with, guess what... little to no documentation.
- Doing something like querying a SharePoint site to see if a list exists requires using try/catch blocks for flow control. Top notch MS! Top notch!
- Trying to get a field within a SPItem is a comedy of errors, especially if people start renaming it.
item["fieldName"]? Nope. Try item[item.Fields.GetFieldByInternalName("internalName").Id].
- Properties such as
Hidden, Title, etc, which are common across many SharePoint classes are NOT encapsulated within an interface, but are instead declared separately in each class. So if you want to do something like show all hidden stuff on a SharePoint site, well you have to cast everything separately.
- To remove users from a site collection you have to call the "SiteUsers" property on any arbitrary SPWeb under that site collection - WTF? See here.
- Ditto for groups.
- Whoever did the documentation was lazy and/or didn't give a rat's behind because 99% of the time you'll find that it's either missing or worded like this (straight from MSDN): "SPView.BaseViewID Property - Gets the ID of the base view for the view." Yes, very helpful. That was exactly what I was looking for. Thank you, Microsoft.
- Content type inheritance. If a document library is 0x0120 then it's only logical that my child content type is... 0x0120000179B99E08755047B72F8136BBEEA6B9!?!?! Oh, the humanity!
- All the subtle nuances and inconsistencies which drive you insane. Example: in one place all of your GUIDs must be uppercase. In another place your GUIDs must have curly braces around them. Everywhere else it doesn't matter. Umm... how hard is it to write a GUID parser and reuse it everywhere in your code base?
- The "S" word -
schema.xml. Get ready to rip out all your hair. The practice of provisioning a list definition is the most essential, and yet most convoluted task you'll ever do in SharePoint. The way you go about it is much the same as it was in 2003. Seriously. SP2010 is marginally better in that it doesn't use "CAML spit" (replace the "p" with an "h" for a better name) to render the views anymore, opting instead for XSLT. VS2010 also does much of the work for you via the UI integration but it only takes you so far. Start doing something fancy like deriving from the Discussion List and suddenly you're in a world of hurt.
- The "l33t sp3ak" hiding in MS's out of the box GUIDs. This one sounds nit-picky but after wasting a whole afternoon wading through XML it'll start to get on your nerves too. For example: 00BFEA71-1C5E-4A24-B310-BA51C3EB7A57 (00BFEA71-1C5E = "Out of box feature", BA51C3EB7A57 = "BASICWEBPART").
- Everything is a GUID. Not only does this smack of laziness on the part of the SharePoint team, but it also means that SharePoint solutions are very brittle, tedious to engineer, and difficult to export from existing sites. Oh yeah, and it guarantees that customizations built using SharePoint Designer will never ever work on another site.
- Writing functionality that operates on one specific list instance (instead of all lists of a certain type) is exceedingly painful and almost always requires hackish workarounds. Example: custom actions.
- SharePoint's idiotic handling of master pages. Why is
~masterurl/default.master a replacement token instead of just replacing ~masterurl? Once again my code-smell sense is tingling and something tells me that they cut corners on this. I've also found that ~site and ~sitecollection do not always work as intended. There's nothing more beautiful than getting a yellow screen because SharePoint replaced ~sitecollection with the text "sitecollection" instead of the URL to my site collection.
- Field internal names can't be longer than 32 characters. If you try to create a field internal name that is longer than 32 characters it gets truncated without telling you. Why? Probably because back in 1995 when the Vermeer guys (see below) were building FrontPage they said "Gee, my 100 megabyte hard drive can't hold a database that's too big. Why don't I make this field a VARCHAR(32) to save space..." and history was made.
- The atrocious naming conventions. A "feature" is a module that a user activates. A "module" is a logical file copy/path. A "schema" is a list definition. A "template" is a list definition that has been made available to the user via the UI. And of course -
SPSite is a site collection and SPWeb is a site. Uh, what?
- EVERYTHING IS A GUID!!! AHHHH!!! - This is a reiteration of point 16 because it is such a critical flaw in the design of SharePoint and probably the single biggest reason NOT TO USE SHAREPOINT. EVER. If you ever try to export web parts, either manually or through code, sooner or later you will find yourself in GUID Hell. Case in point: List View Web Part. Never mind that my list on Site A is identical in every way to a list on Site B - because my web parts point to globally unique identifiers, they cannot be exported and reused. Sorry, try another way. There are so many different designs that SharePoint could have used instead of "everything is a GUID"... for example, why couldn't they use a namespace-based approach to identifying objects? My list ID might be:
MyCompany.MyTeam.MyList. If that were the case, then anything pointing to that list would be exportable. Instead they took the easy way out and now you, the developer, pay the price.
- CAML - a.k.a. "Crappy A** Markup Language". Technically this complaint overlaps with some of the other ones, such as #14, but it's important enough to be included on its own. Do not believe the lies - CAML is not going away any time soon! And those of you who try to be good little SharePoint developers, doing everything "by the book", understand that there isn't much you can do declaratively (in CAML). And of course that means that you're stuck writing a bunch of messy C# code in event receivers just to do something simple like wire up a quick launch link to a list you just created. Those who value their sanity will write helper classes to do all these seemingly repetitive tasks (because the API also falls short for most of them) and a very few intrepid individuals may take it a step further and slap their own ad-hoc scripting language on top of it, which for all intents and purposes serves as a replacement for the abomination that is CAML. Yet the truth remains for all to see - CAML sucks, the API sucks just a little bit less, and either way you go it's going to be painful.
- SharePoint is "special". So "special", in fact, that it doesn't even play nice with other Microsoft products. Case in point: SP2010 integration with Reporting Services. Get ready to look like Telly Savalas because this will make you rip out whatever hair you have left. No joke.
I did some research into the history of SharePoint in order to understand why it is what it is, and stumbled upon some gems:
All of this leads to the following conclusion: SharePoint is the frankenstein progeny of FrontPage Server Extensions, plain and simple. That's why its API stinks so badly and why it has a host of nasty COM objects at its core. I would even wager a guess that large blocks of code at the heart of the SP code base are the original ones that Microsoft stole... er, acquired from Vermeer. In other words, it is likely that parts of SharePoint are over 16 years old! No wonder those error messages are so cryptic. This is technology from 1995! Its roots are plain for all to see: vti = "Vermeer Technologies Inc". When I came to this revelation I didn't know whether to laugh or cry.
Discussion (why SharePoint is horrible)
What is software? A piece of software is a machine built entirely out of pieces of logic (typically) in an iterative, fractal, emergent process. What is important here is the whole fractal/emergent process by which the software develops. If a system is built upon solid requirements, a holistic vision, and good coding practice, then as that system changes and evolves over time it will develop into something that is intricate, yet beautiful, that scales well, and is easy to extend. However, if a system is built from half-baked requirements by sub-par developers, then it will instead grow like a cancer into something that is unsightly, difficult to maintain, and ultimately unsustainable. It all comes down to beginnings, the germination phase, as it were. And that brings us back to SharePoint.
As outlined above, SharePoint entered existence as an ill-conceived product called Vermeer FrontPage, way back in 1995/96. It was supposed to be something which enhanced the user’s web experience, which made all the new technology more accessible to the less tech-savvy people, but in reality it was a silly product from an even sillier time in history. More cynically, one could speculate that it was a slopped-together piece of vaporware pawned off by a couple of non-programmers onto an unsuspecting mega corporation, Microsoft, with the belief that it would never again see the light of day. Unfortunately, it did emerge again, but as something new and warped and terrible to behold.
It’s likely that Microsoft, eager to recoup the $133 million that they spent to purchase FrontPage, started dumping countless man hours into the product in an effort to make it something worth selling in the brave new world of post dot-com software. However (remember what I said above?) software which starts out from a poorly designed, tenuous architecture will only get worse over time. And that’s exactly what happened.
SharePoint, at its heart, is a convoluted mess of anti-patterns and Rube Goldberg-like contraptions all operating behind a black curtain. To be more specific, it’s a bunch of tightly coupled COM objects which are wrapped inside .NET objects. Now, it’s anyone’s guess as to what’s hiding inside those COM objects, but for those of us who are intimate with the product it isn’t a conspiracy theory to believe that there is, indeed, a whole bunch of Vermeer code inside of them. There are clues, if you know where to look, and the horrors of the database schema are there in plain sight for your viewing displeasure. Speculating further, it’s likely that Microsoft only exacerbated the problem by putting their absolute bottom-of-the-barrel programmers and project managers onto SharePoint throughout the years. However, if you place the turd onto a silver platter and surround it with enough delicate trimmings, you can sell it to anyone as filet mignon, and that’s exactly what they do.
To conclude: caveat emptor—buyer beware! Know what you’re getting into before you sign your name (in blood). Expect a colossally high programmer burnout rate when working with this product, especially when you start deviating from its original intended purpose, back when it was still known as FrontPage… which was?
Merely a WYSIWYG editor, with the ability to throw some widgety things onto a web page.
Fin.